Skip to content

Commit

Permalink
Support arm install
Browse files Browse the repository at this point in the history
  • Loading branch information
erebe committed Jul 8, 2024
1 parent 2777a2a commit e37e928
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,21 @@
output_tgz="/tmp/qovery.tgz"
dest_binary="/usr/local/bin"
os=$(uname | tr '[:upper:]' '[:lower:]')
case "$(uname -m)" in
x86_64)
amd64)
arch="amd64"
;;

arm64)
aarch64)
arch="amd64"
;;

*)
arch="amd64"
;;
esac

echo "[+] Downloading Qovery CLI archive..."

Expand Down

0 comments on commit e37e928

Please sign in to comment.