Skip to content

Commit

Permalink
Support linux arm
Browse files Browse the repository at this point in the history
  • Loading branch information
k1LoW committed Feb 26, 2024
1 parent da91974 commit 5482de7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion scripts/install-gh-setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@ elif uname -a | grep Darwin > /dev/null; then
bin="${TMPDIR}gh-setup"
elif uname -a | grep Linux > /dev/null; then
if [ $arch = "x86_64" ]; then
exe="gh-setup_${tag}_linux_amd64"
exe="gh-setup_${tag}_linux_amd64"
elif [ $arch = "aarch64" -o $arch = "arm64" ]; then
exe="gh-setup_${tag}_linux_arm64"
fi
bin="/tmp/gh-setup"

Expand Down

0 comments on commit 5482de7

Please sign in to comment.