Skip to content

Commit

Permalink
Merge pull request #11 from zeroshift/main
Browse files Browse the repository at this point in the history
feat: Allow downloading of ARM binaries on compatable systems.
  • Loading branch information
czchen committed Feb 10, 2024
2 parents 44d5c60 + 5c545a8 commit b5be72a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lib/utils.bash
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@ get_arch() {
if [[ "$machine" =~ "x86_64" ]]; then
echo "amd64"
return
elif [[ "$machine" =~ arm.* ]]; then
echo "$machine"
return
fi

fail "Unknown arch"
Expand Down

0 comments on commit b5be72a

Please sign in to comment.