From 823cfe3c899826790c56249b788fd04ccd074d66 Mon Sep 17 00:00:00 2001 From: Steve Hoffman <53450347+shoffman-percona@users.noreply.github.com> Date: Mon, 4 Mar 2024 12:42:48 +0000 Subject: [PATCH] EVEREST-885 fix install.sh for arm linux --- install.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/install.sh b/install.sh index e64745571..7c5960f46 100755 --- a/install.sh +++ b/install.sh @@ -17,6 +17,10 @@ arch=$(uname -m | tr '[:upper:]' '[:lower:]') if [[ ($os == "linux" || $os == "darwin") && $arch == "x86_64" ]] then arch="amd64" +elif [[ $os == "linux" && $arch == "aarch64" ]] +# linux on ARM (tested on Ubuntu 22.10 for ARM64) +then + arch="arm64" fi