From b0608d6f25af5bcd80865f6e2e34e93b9717bd60 Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Wed, 31 Mar 2021 21:02:55 +0100 Subject: [PATCH] install.sh: fix macOS arm64 download - fixes #5183 --- docs/content/install.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/content/install.sh b/docs/content/install.sh index 56141f3f1..066fd26f0 100755 --- a/docs/content/install.sh +++ b/docs/content/install.sh @@ -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