From 0b1337070e19180d04f5d66e87129011d10bdeb9 Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Tue, 28 Dec 2021 12:45:37 -0500 Subject: [PATCH] Update gam-install.sh --- src/gam-install.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/gam-install.sh b/src/gam-install.sh index 4ffeeec3..8c9e87b6 100755 --- a/src/gam-install.sh +++ b/src/gam-install.sh @@ -114,9 +114,10 @@ case $gamos in done case $gamarch in x86_64) gamfile="linux-x86_64-$useglibc.tar.xz";; - arm64|aarch64) gamfile="linux-arm64-$useglibc.tar.xz";; + arm64|aarch64) gamfile="linux-arm64-glibc2.28.tar.xz";; + arm|armv7l) gamfile="linux-armv7l-glibc2.28.tar.xz";; *) - echo_red "ERROR: this installer currently only supports x86_64 and arm64 Linux. Looks like you're running on $gamarch. Exiting." + echo_red "ERROR: this installer currently only supports x86_64, arm and arm64 Linux. Looks like you're running on $gamarch. Exiting." exit esac ;;