We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 233ac9c + 132cfe1 commit ba0fbf1Copy full SHA for ba0fbf1
install.sh
@@ -14,7 +14,7 @@
14
DESTINATION="${PREFIX:-/usr/local/bin}/paxos"
15
16
# Which version to download
17
- RELEASE="v${VERSION:-1.0.2}"
+ RELEASE="v${VERSION:-1.0.3}"
18
19
# Determine which binary to download.
20
FILENAME=''
@@ -27,6 +27,9 @@
27
elif uname -a | grep -qi 'aarch64.*GNU/Linux'; then
28
echo 'AArch64 GNU Linux detected.'
29
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
33
elif uname -a | grep -qi 'Darwin.*x86_64'; then
34
echo 'x86-64 macOS detected.'
35
FILENAME=paxos-x86_64-apple-darwin
0 commit comments