blob: 569c4a4136d9703b3233e82e2f9ff9bb7aa60dc7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/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
|