[system-dependencies] Execute 'xcode-select' after installing Xcode. (#206)

Since otherwise we'd have to provision again to select the installed
Xcode.
This commit is contained in:
Rolf Bjarne Kvinge 2016-06-15 18:25:47 -07:00 коммит произвёл GitHub
Родитель 679055aadd
Коммит b886d18d98
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -207,6 +207,9 @@ function install_specific_xcode () {
sudo $XCODE_DEVELOPER_ROOT/usr/bin/xcodebuild -license accept
fi
log "Executing 'sudo xcode-select -s $XCODE_DEVELOPER_ROOT'"
sudo xcode-select -s $XCODE_DEVELOPER_ROOT
ok "Xcode $XCODE_VERSION provisioned"
}