Skip to content

Commit 9b2c564

Browse files
committed
Fix macOS and Linux downloads
1 parent b77e89d commit 9b2c564

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

docs/install.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ get_platform_arch() {
1616
Darwin)
1717
case "$(uname -m)" in
1818
arm64)
19-
echo "macos_arm"
19+
echo "macArm"
2020
;;
2121
x86_64)
22-
echo "macos64"
22+
echo "mac64"
2323
;;
2424
*)
2525
echo "Unsupported macOS architecture."
@@ -30,7 +30,7 @@ get_platform_arch() {
3030
Linux)
3131
case "$(uname -m)" in
3232
armv7l)
33-
echo "linux_arm"
33+
echo "linuxArm"
3434
;;
3535
x86_64)
3636
echo "linux64"

0 commit comments

Comments
 (0)