test changes

This commit is contained in:
Maxim Lobanov
2020-10-19 08:24:21 +03:00
parent 3344a1dfb7
commit 0d08e13079
4 changed files with 29 additions and 28 deletions

View File

@@ -12,7 +12,7 @@ createXamarinProvisionatorSymlink() {
fi
}
getXcodeVersionToInstall() {
resolveLatestXcodeVersion() {
local XCODE_VERSION="$1"
if [[ $XCODE_VERSION == "12" ]]; then
@@ -82,7 +82,7 @@ extractXcodeXip() {
createBetaSymlink() {
local XCODE_VERSION=$1
if [[ $XCODE_VERSION =~ 1[01].* ]] || [[ $XCODE_VERSION == "12" ]]; then
if [[ $XCODE_VERSION =~ 1[01].* ]] || [[ $XCODE_VERSION == "12.0" ]]; then
ln -sf "/Applications/Xcode_${XCODE_VERSION}.app" "/Applications/Xcode_${XCODE_VERSION}_beta.app"
fi
}