From 4297886b551429c708f4775eddac30e044d8ce09 Mon Sep 17 00:00:00 2001 From: Phillip Jensen <33448819+cryptobench@users.noreply.github.com> Date: Mon, 13 Dec 2021 13:38:59 +0100 Subject: [PATCH] Add arm64 / aarch64 installer support --- installer.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/installer.sh b/installer.sh index 4e1cfc2..792027b 100755 --- a/installer.sh +++ b/installer.sh @@ -179,6 +179,9 @@ detect_dist() { x86_64 | x86-64 | x64 | amd64) _cputype=x86_64 ;; + arm64 | aarch64) + _cputype=aarch64 + ;; *) err "invalid cputype: $_cputype" ;;