Skip to content

Commit 3eaa999

Browse files
author
Paolo Dettori
committed
fix(deploy): silence shellcheck SC2034 unused loop var in sandbox wait
Assisted-By: Claude (Anthropic AI) <noreply@anthropic.com> Signed-off-by: Paolo Dettori <paolo.dettori@example.com>
1 parent bf39d95 commit 3eaa999

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

deploy/knative/setup-kind.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ echo "--- Deploying Sandbox CR ---"
110110
kubectl apply -f "$SCRIPT_DIR/sandbox.yaml"
111111
# Wait for the Sandbox controller to publish .status.selector, then wait for the pod
112112
SEL=""
113-
for i in $(seq 1 60); do
113+
for _ in $(seq 1 60); do
114114
SEL=$(kubectl -n default get sandbox sandbox-0 -o jsonpath='{.status.selector}' 2>/dev/null || true)
115115
[ -n "$SEL" ] && break
116116
sleep 2

0 commit comments

Comments
 (0)