From 6871fa311d65dfcaa02b7dd18010b9114c21464c Mon Sep 17 00:00:00 2001 From: Bernd Verst <4535280+berndverst@users.noreply.github.com> Date: Wed, 10 Nov 2021 09:41:38 -0800 Subject: [PATCH] Update install script for Darwin Arm64 --- install/install.sh | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/install/install.sh b/install/install.sh index faf04bc84..7100b3c6d 100755 --- a/install/install.sh +++ b/install/install.sh @@ -40,7 +40,7 @@ getSystemInfo() { } verifySupported() { - local supported=(darwin-amd64 linux-amd64 linux-arm linux-arm64) + local supported=(darwin-amd64 darwin-arm64 linux-amd64 linux-arm linux-arm64) local current_osarch="${OS}-${ARCH}" for osarch in "${supported[@]}"; do @@ -50,14 +50,6 @@ verifySupported() { fi done - if [ "$current_osarch" == "darwin-arm64" ]; then - echo "The darwin_arm64 arch has no native binary, however you can use the amd64 version so long as you have rosetta installed" - echo "Use 'softwareupdate --install-rosetta' to install rosetta if you don't already have it" - ARCH="amd64" - return - fi - - echo "No prebuilt binary for ${current_osarch}" exit 1 }