Skip to content

Commit 5d49b27

Browse files
committed
fix: shellcheck warning - use _ for unused loop variable
1 parent 6057475 commit 5d49b27

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

demos/turtlebot3_integration/inject-nav-failure.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ EXEC_ID=$(echo "$RESPONSE" | jq -r '.id' 2>/dev/null)
4646
if [ -n "$EXEC_ID" ] && [ "$EXEC_ID" != "null" ]; then
4747
echo ""
4848
echo "Waiting for navigation to fail (checking status)..."
49-
for i in {1..10}; do
49+
for _ in {1..10}; do
5050
sleep 2
5151
STATUS=$(curl -s "${API_BASE}/apps/bt-navigator/operations/navigate_to_pose/executions/${EXEC_ID}" | jq -r '.status' 2>/dev/null)
5252
echo " Status: $STATUS"

0 commit comments

Comments
 (0)