From a32f8118b1eecc354bc2e87684af45c14aa9f88f Mon Sep 17 00:00:00 2001 From: Andrey Meshkov Date: Mon, 1 Feb 2021 00:33:17 +0300 Subject: [PATCH] Added arm64 support to the install script --- scripts/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install.sh b/scripts/install.sh index 6ac8fa90..cfa02759 100644 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -97,7 +97,7 @@ detect_cpu() CPU=armv7 ;; - aarch64) + aarch64 | arm64) CPU=arm64 ;;