Merge pull request #144 from curusarn/rawinstall-arm64-wildcard

Use wildcard to detect arm64
pull/155/head
Šimon Let 6 years ago committed by GitHub
commit 73ca6c27f1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      scripts/rawinstall.sh

@ -56,12 +56,12 @@ x86_64)
x86|i386|i686)
ARCH=386
;;
arm64|aarch64|armv8b|armv8l)
ARCH=arm64
;;
arm)
ARCH=armv6
;;
arm64|aarch64*|armv*)
ARCH=arm64
;;
*)
ARCH=unknown
;;
@ -147,4 +147,4 @@ if ! scripts/install.sh; then
echo "cd $PWD && scripts/install.sh"
echo
exit 1
fi
fi

Loading…
Cancel
Save