diff --git a/unity-get-container/get_container.sh b/unity-get-container/get_container.sh index fa20f59..23d7126 100644 --- a/unity-get-container/get_container.sh +++ b/unity-get-container/get_container.sh @@ -7,25 +7,25 @@ TARGET=$(echo "$UNITY_TARGET" | awk '{print tolower($0)}') BUILD_ARG="" case $TARGET in "windows" | "windows32bit") - UNITY_TARGET=windows-mono-1.0.1 + UNITY_TARGET=windows-mono-1 ;; "mac" | "osx") - UNITY_TARGET=mac-mono-1.0.1 + UNITY_TARGET=mac-mono-1 ;; "ios") - UNITY_TARGET=ios-1.0.1 + UNITY_TARGET=ios-1 UNITY_VERSION=ubuntu-$UNITY_VERSION ;; "linux") - UNITY_TARGET=base-1.0.1 + UNITY_TARGET=base-1 UNITY_VERSION=ubuntu-$UNITY_VERSION ;; "android") - UNITY_TARGET=android-1.0.1 + UNITY_TARGET=android-1 UNITY_VERSION=ubuntu-$UNITY_VERSION ;; "webgl") - UNITY_TARGET=webgl-1.0.1 + UNITY_TARGET=webgl-1 UNITY_VERSION=ubuntu-$UNITY_VERSION ;; *)