Skip to content

Commit

Permalink
fix: parse aarch64 correctly. (#132)
Browse files Browse the repository at this point in the history
  • Loading branch information
bgroff authored Oct 8, 2024
1 parent 4ec1013 commit 4d75dd3
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions abctl_install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,8 @@ _get_os() {
_get_arch() {
if uname -m | grep -q "arm"; then
echo arm64
elif uname -m | grep -q "aarch64"; then
echo arm64
else
echo amd64
fi
Expand Down

0 comments on commit 4d75dd3

Please sign in to comment.