Skip to content

Commit

Permalink
Removed workaround from install.sh else arm64 now is supported on lin…
Browse files Browse the repository at this point in the history
…ux and darwin.
  • Loading branch information
cbuschka committed Sep 25, 2021
1 parent 9cb3785 commit 4f02ae3
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -57,13 +57,7 @@ function get_arch() {
case "${unameOut}" in
x86_64*) ARCH="amd64" ;;
386*) ARCH="386" ;;
arm64*)
if [[ "$OS" == darwin ]]; then
ARCH="amd64"
else
echo "${unameOut} is not supported except on darwin. Aborted"
fi
;;
arm64*) ARCH="arm64" ;;
*)
echo "${unameOut} is not supported. Aborted"
exit 1
Expand Down

0 comments on commit 4f02ae3

Please sign in to comment.