Skip to content

Commit 6b89c17

Browse files
committed
fix: quote SIND_VERBOSITY to satisfy shellcheck SC2086
1 parent 75be1f3 commit 6b89c17

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

scripts/create.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,13 @@ for ((i = 0; i < count; i++)); do
3434
[[ "${SIND_PULL:-false}" == "true" ]] && flags+=(--pull)
3535

3636
echo "::group::Creating cluster from $label"
37-
sind $SIND_VERBOSITY create cluster "${flags[@]}"
37+
sind "$SIND_VERBOSITY" create cluster "${flags[@]}"
3838
echo "::endgroup::"
3939

4040
# Extract cluster name
4141
name=$(yq '.name // "default"' "$config")
4242

43-
sind $SIND_VERBOSITY status "$name"
43+
sind "$SIND_VERBOSITY" status "$name"
4444

4545
if [[ -n "$clusters" ]]; then
4646
clusters="${clusters},${name}"

0 commit comments

Comments
 (0)