Skip to content

Commit

Permalink
Merge pull request #10 from hanasuke/support_arm64_architecture
Browse files Browse the repository at this point in the history
support arm64 for macOS
  • Loading branch information
raimon49 committed Oct 6, 2023
2 parents 4e3b2a1 + 6679a87 commit 2457d99
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions bin/install
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ get_arch() {
arch="amd64"
elif [ "$(uname -m)" = "aarch64" ]; then
arch="arm"
elif [ "$(uname -m)" = "arm64" ]; then
arch="arm64"
else
arch="386"
fi
Expand Down

0 comments on commit 2457d99

Please sign in to comment.