Skip to content

Commit

Permalink
install.sh: fix macOS arm64 download - fixes #5183
Browse files Browse the repository at this point in the history
  • Loading branch information
ncw committed Mar 31, 2021
1 parent 6d65d11 commit 9e2fbe0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/content/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -101,12 +101,12 @@ case "$OS_type" in
i?86|x86)
OS_type='386'
;;
aarch64|arm64)
OS_type='arm64'
;;
arm*)
OS_type='arm'
;;
aarch64)
OS_type='arm64'
;;
*)
echo 'OS type not supported'
exit 2
Expand Down

0 comments on commit 9e2fbe0

Please sign in to comment.