We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dfd5bbb commit f14faccCopy full SHA for f14facc
src/ci/scripts/select-xcode.sh
@@ -7,5 +7,7 @@ IFS=$'\n\t'
7
source "$(cd "$(dirname "$0")" && pwd)/../shared.sh"
8
9
if isMacOS; then
10
- sudo xcode-select -s "${SELECT_XCODE}"
+ if [[ -s "${SELECT_XCODE-}" ]]; then
11
+ sudo xcode-select -s "${SELECT_XCODE}"
12
+ fi
13
fi
0 commit comments