From c3bf18cf5a0dc53b03bfdf8146cfef1f70d8bcae Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Thu, 22 Nov 2018 15:07:12 -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 c440f28f..f7a35b1e 100755 --- a/src/gam-install.sh +++ b/src/gam-install.sh @@ -8,7 +8,7 @@ GAM installation script. OPTIONS: -h show help. -d Directory where gam folder will be installed. Default is \$HOME/bin/ - -a Architecture to install (i386, x86_64, arm). Default is to detect your arch with "uname -m". + -a Architecture to install (i386, x86_64, arm, arm64). Default is to detect your arch with "uname -m". -o OS we are running (linux, macos). Default is to detect your OS with "uname -s". -l Just upgrade GAM to latest version. Skips project creation and auth. -p Profile update (true, false). Should script add gam command to environment. Default is true. @@ -81,7 +81,8 @@ case $gamos in case $gamarch in x86_64) gamfile="linux-x86_64.tar.xz";; i?86) gamfile="linux-i686.tar.xz";; - arm*) gamfile="linux-armv7l.tar.xz";; + arm|armv7l) gamfile="linux-armv7l.tar.xz";; + arm64|aarch64) gamfile="linux-aarch64.tar.xz";; *) echo_red "ERROR: this installer currently only supports i386, x86_64 and arm Linux. Looks like you're running on $gamarch. Exiting." exit