diff --git a/unity-get-buildtarget/get_target.sh b/unity-get-buildtarget/get_target.sh index 1c75955..157abe5 100644 --- a/unity-get-buildtarget/get_target.sh +++ b/unity-get-buildtarget/get_target.sh @@ -8,6 +8,10 @@ case $TARGET in UNITY_TARGET=Win64 BUILD_ARG=-buildWindows64Player ;; + "windowsarm") + UNITY_TARGET=Win + BUILD_ARG=-buildWindows64Player + ;; "windows32bit") UNITY_TARGET=Win BUILD_ARG=-buildWindowsPlayer diff --git a/unity-get-container/get_container.sh b/unity-get-container/get_container.sh index 75ed04e..0b114bd 100644 --- a/unity-get-container/get_container.sh +++ b/unity-get-container/get_container.sh @@ -7,7 +7,7 @@ TARGET=$(echo "$UNITY_TARGET" | awk '{print tolower($0)}') BUILD_ARG="" REVISION="3" case $TARGET in - "windows" | "windows32bit") + "windows" | "windows32bit" | "windowsarm") UNITY_TARGET=windows-mono-$REVISION ;; "mac" | "osx")