Skip to content

Commit

Permalink
Merge pull request #3 from handlename/fix/support-aarch64
Browse files Browse the repository at this point in the history
support aarch64
  • Loading branch information
koluku authored Sep 20, 2023
2 parents fe6745f + 56b2383 commit b9c3216
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions bin/download
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ get_arch() {
local arch
arch=$(uname -m | tr '[:upper:]' '[:lower:]')
case ${arch} in
aarch64)
arch='arm64'
;;
x86_64)
arch='amd64'
;;
Expand Down

0 comments on commit b9c3216

Please sign in to comment.