Skip to content

Commit 7f52bb3

Browse files
committed
fix: Unix install script
I accidenatlly wrote if statement wrong, so it didn't work for arm
1 parent febb02f commit 7f52bb3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

install.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ if [ "$OS_NAME" = "Linux" ]; then
1717

1818
if [ "$ARCH_NAME" = "x86_64" ]; then
1919
BUILD_TARGET="linux-amd64"
20-
elif [ "$ARCH_NAME" = "arm" || "$ARCH_NAME" = "arm64" ]; then
20+
elif [ "$ARCH_NAME" = "arm" ] || [ "$ARCH_NAME" = "arm64" ]; then
2121
BUILD_TARGET="linux-arm64"
2222
else
2323
NO_RELEASE_ASSET="true"
@@ -28,7 +28,7 @@ elif [ "$OS_NAME" = "Darwin" ]; then
2828

2929
if [ "$ARCH_NAME" = "x86_64" ]; then
3030
BUILD_TARGET="darwin-amd64"
31-
elif [ "$ARCH_NAME" = "arm" || "$ARCH_NAME" = "arm64" ]; then
31+
elif [ "$ARCH_NAME" = "arm" ] || [ "$ARCH_NAME" = "arm64" ]; then
3232
BUILD_TARGET="darwin-arm64"
3333
else
3434
NO_RELEASE_ASSET="true"

0 commit comments

Comments
 (0)