Skip to content

Commit 0c0a5ec

Browse files
authored
Fix installation script parameterization (#867)
1 parent 3cf116d commit 0c0a5ec

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/install.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -443,9 +443,9 @@ main() {
443443
else
444444
# Linux
445445
if [[ "$use_musl" == "true" ]]; then
446-
filename="q-${arch}-linux-musl.zip"
446+
filename="${BINARY_NAME}-${arch}-linux-musl.zip"
447447
else
448-
filename="q-${arch}-linux.zip"
448+
filename="${BINARY_NAME}-${arch}-linux.zip"
449449
fi
450450
download_url="${BASE_URL}/latest/$filename"
451451
fi

0 commit comments

Comments
 (0)