Skip to content

Commit

Permalink
Merge pull request #404 from gramlang/install-v0.0.3
Browse files Browse the repository at this point in the history
Install v0.0.3 by default
  • Loading branch information
stepchowfun authored Jun 2, 2023
2 parents e704c8b + 16cd5f0 commit 928feff
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 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}/gram"

# Which version to download
RELEASE="v${VERSION:-0.0.2}"
RELEASE="v${VERSION:-0.0.3}"

# Determine which binary to download.
FILENAME=''
Expand All @@ -27,6 +27,9 @@
elif uname -a | grep -qi 'aarch64.*GNU/Linux'; then
echo 'AArch64 GNU Linux detected.'
FILENAME=gram-aarch64-unknown-linux-gnu
elif uname -a | grep -qi 'aarch64.*Linux'; then
echo 'AArch64 non-GNU Linux detected.'
FILENAME=gram-aarch64-unknown-linux-musl
elif uname -a | grep -qi 'Darwin.*x86_64'; then
echo 'x86-64 macOS detected.'
FILENAME=gram-x86_64-apple-darwin
Expand Down

0 comments on commit 928feff

Please sign in to comment.