From da214973a11dd599f3f976c16cf0354e06351c78 Mon Sep 17 00:00:00 2001 From: Oliver Heyme Date: Tue, 24 Apr 2018 11:41:29 +0200 Subject: [PATCH] [install] Add arm64/aarch64 suuport --- docs/content/install.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/content/install.sh b/docs/content/install.sh index 48688bca7..2a9760145 100755 --- a/docs/content/install.sh +++ b/docs/content/install.sh @@ -104,6 +104,9 @@ case $OS_type in arm*) OS_type='arm' ;; + aarch64) + OS_type='arm64' + ;; *) echo 'OS type not supported' exit 2