Skip to content

Commit

Permalink
fixing names of the downloadable asserts
Browse files Browse the repository at this point in the history
refs #3
  • Loading branch information
lwiechec committed Nov 6, 2023
1 parent 336a8e6 commit 1304f46
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion lib/utils.bash
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,16 @@ download_release() {
local filename="$2"

case "$(uname -s)" in
Linux*) platform=linux ;;
Linux*) platform=Linux ;;
Darwin*) platform=Darwin ;;
Freebsd*) platform=Freebsd ;;
Openbsd*) platform=Openbsd ;;
esac

case "$(uname -m)" in
aarch64) arch=aarch64 ;;
x86_64) arch=x86_64 ;;
aarch64) arch=arm64 ;;
esac

echo >&2 "* Downloading gum release $version..."
Expand Down

0 comments on commit 1304f46

Please sign in to comment.