forked from TrueCloudLab/rclone
install.sh: fix macOS arm64 download - fixes #5183
This commit is contained in:
parent
6d65d116df
commit
9e2fbe0f1a
1 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue