We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f11eeb3 commit 4f783aaCopy full SHA for 4f783aa
scripts/checksum.sh
@@ -13,10 +13,9 @@ VECTOR_VERSION=${VECTOR_VERSION:-nightly}
13
pushd "${ROOT}/target/artifacts"
14
15
shopt -s extglob
16
-ARTIFACTS=$(ls !(*SHA256SUMS))
+ARTIFACTS=(!(*SHA256SUMS))
17
shopt -u extglob
18
19
-# shellcheck disable=SC2086 # Intended splitting of ARTIFACTS
20
-sha256sum $ARTIFACTS > vector-"$VECTOR_VERSION"-SHA256SUMS
+sha256sum "${ARTIFACTS[@]}" > vector-"$VECTOR_VERSION"-SHA256SUMS
21
22
popd
0 commit comments