Skip to content
This repository has been archived by the owner on Mar 4, 2024. It is now read-only.

Update install.sh #316

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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


Expand Down
Loading