/
avrong
/
rust-lang
Обзор
Документация
Войти
/
avrong
/
rust-lang
Код
Запросы
0
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
src/ci/scripts/select-xcode.sh
11 строк
210 B
Eric Huss
Require that SELECT_XCODE is set.
11 фев 2024, 08:02
11 фев 2024, 08:02
4ce1f1c
Код
Авторство
О чём код?
#!/bin/bash # This script selects the Xcode instance to use. set -euo pipefail IFS=$'\n\t' source "$(cd "$(dirname "$0")" && pwd)/../shared.sh" if isMacOS; then sudo xcode-select -s "${SELECT_XCODE}" fi