Skip to content

Commit ba0fbf1

Browse files
authored
Merge pull request #109 from stepchowfun/install-v1.0.3
Install v1.0.3 by default
2 parents 233ac9c + 132cfe1 commit ba0fbf1

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Diff for: install.sh

+4-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
DESTINATION="${PREFIX:-/usr/local/bin}/paxos"
1515

1616
# Which version to download
17-
RELEASE="v${VERSION:-1.0.2}"
17+
RELEASE="v${VERSION:-1.0.3}"
1818

1919
# Determine which binary to download.
2020
FILENAME=''
@@ -27,6 +27,9 @@
2727
elif uname -a | grep -qi 'aarch64.*GNU/Linux'; then
2828
echo 'AArch64 GNU Linux detected.'
2929
FILENAME=paxos-aarch64-unknown-linux-gnu
30+
elif uname -a | grep -qi 'aarch64.*Linux'; then
31+
echo 'AArch64 non-GNU Linux detected.'
32+
FILENAME=paxos-aarch64-unknown-linux-musl
3033
elif uname -a | grep -qi 'Darwin.*x86_64'; then
3134
echo 'x86-64 macOS detected.'
3235
FILENAME=paxos-x86_64-apple-darwin

0 commit comments

Comments
 (0)