Skip to content

Commit

Permalink
Merge pull request #468 from stepchowfun/install-v0.47.2
Browse files Browse the repository at this point in the history
Install v0.47.2 by default
  • Loading branch information
stepchowfun authored May 14, 2023
2 parents 31b472f + a9fa5f9 commit ca0de5a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
DESTINATION="${PREFIX:-/usr/local/bin}/toast"

# Which version to download
RELEASE="v${VERSION:-0.47.1}"
RELEASE="v${VERSION:-0.47.2}"

# Determine which binary to download.
FILENAME=''
Expand All @@ -29,6 +29,10 @@
echo 'x86-64 macOS detected.'
FILENAME=toast-x86_64-apple-darwin
fi
if uname -a | grep -qi 'Darwin.*arm64'; then
echo 'AArch64 macOS detected.'
FILENAME=toast-aarch64-apple-darwin
fi

# Find a temporary location for the binary.
TEMPDIR=$(mktemp -d /tmp/toast.XXXXXXXX)
Expand Down

0 comments on commit ca0de5a

Please sign in to comment.