From 00e1c134b8d9d3b61a4b8555a2d8ab43c0b2fec8 Mon Sep 17 00:00:00 2001 From: Jason Lowe Date: Wed, 30 Jun 2021 04:55:23 +0000 Subject: [PATCH] added arm64 to the osarch to allow for arm64v8 OS's PR-URL: https://github.com/isaacs/nave/pull/111 Credit: @jlowe000 Close: #111 Reviewed-by: @isaacs --- nave.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/nave.sh b/nave.sh index f570e2d..1695369 100755 --- a/nave.sh +++ b/nave.sh @@ -48,6 +48,7 @@ osarch () { *x86_64*) arch=x64 ;; *i[3456]86*) arch=x86 ;; *raspberrypi*) arch=arm-pi ;; + *aarch64*) arch=arm64 ;; esac # memoize if [ "$os" != "" ] && [ "$arch" != "" ]; then