Skip to content

Commit 237b739

Browse files
janiszclaude
andcommitted
Fix shellcheck warning in smoke workflow
Quote variable in numeric comparison to prevent globbing and word splitting. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
1 parent 444a725 commit 237b739

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/smoke.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ jobs:
136136
break
137137
fi
138138
139-
if [ $i -eq 180 ]; then
139+
if [ "$i" -eq 180 ]; then
140140
echo "ERROR: Cluster did not become healthy after 180 attempts (6 minutes)"
141141
echo "Current status: $CLUSTER_HEALTH"
142142
exit 1

0 commit comments

Comments
 (0)