Skip to content

Commit

Permalink
feat: Allow downloading of ARM binaries on compatable systems.
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick Prendergast committed Feb 10, 2024
1 parent 44d5c60 commit 5c545a8
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 5c545a8

Please sign in to comment.