From 77d47cc69703821ffba1949ffd0d7a5522a17d42 Mon Sep 17 00:00:00 2001 From: cupcakearmy Date: Tue, 25 May 2021 22:57:42 +0200 Subject: [PATCH] add arm in install script --- install.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/install.sh b/install.sh index f176b86..de473a4 100755 --- a/install.sh +++ b/install.sh @@ -23,6 +23,8 @@ elif [[ $NATIVE_ARCH == *"arm64"* || $NATIVE_ARCH == *"aarch64"* ]]; then ARCH=arm64 elif [[ $NATIVE_ARCH == *"x86"* ]]; then ARCH=386 +elif [[ $NATIVE_ARCH == *"armv7"* ]]; then + ARCH=arm else echo "Could not determine Architecure automatically, please check the release page manually: https://github.com/cupcakearmy/autorestic/releases" exit 1