add arm in install script

This commit is contained in:
cupcakearmy 2021-05-25 22:57:42 +02:00
parent a3239c0f3b
commit 77d47cc697
No known key found for this signature in database
GPG Key ID: D28129AE5654D9D9
1 changed files with 2 additions and 0 deletions

View File

@ -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