We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent febb02f commit 7f52bb3Copy full SHA for 7f52bb3
install.sh
@@ -17,7 +17,7 @@ if [ "$OS_NAME" = "Linux" ]; then
17
18
if [ "$ARCH_NAME" = "x86_64" ]; then
19
BUILD_TARGET="linux-amd64"
20
- elif [ "$ARCH_NAME" = "arm" || "$ARCH_NAME" = "arm64" ]; then
+ elif [ "$ARCH_NAME" = "arm" ] || [ "$ARCH_NAME" = "arm64" ]; then
21
BUILD_TARGET="linux-arm64"
22
else
23
NO_RELEASE_ASSET="true"
@@ -28,7 +28,7 @@ elif [ "$OS_NAME" = "Darwin" ]; then
28
29
30
BUILD_TARGET="darwin-amd64"
31
32
BUILD_TARGET="darwin-arm64"
33
34
0 commit comments