Skip to content

Commit 0134486

Browse files
authored
Merge pull request #3735 from ActiveState/CP-1103
Don't default to arm64 yet; still testing
2 parents 9243be3 + 6c45512 commit 0134486

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

installers/install.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,9 @@ Linux)
104104
Darwin)
105105
OS="darwin"
106106
ARCH="amd64"
107-
arch="`uname -m`"
108-
if [ $arch = "arm64" ]; then ARCH="arm64"; fi
107+
if [ -n "$OVERRIDE_ARCH" ]; then
108+
ARCH="$OVERRIDE_ARCH"
109+
fi
109110
DOWNLOADEXT=".tar.gz"
110111
SHA256SUM="shasum -a 256"
111112
;;

0 commit comments

Comments
 (0)