From 568ab33a37a4476f27b7017b40ffd24dc733c079 Mon Sep 17 00:00:00 2001 From: Piotr Idzik <65706193+vil02@users.noreply.github.com> Date: Sun, 9 Feb 2025 23:56:52 +0100 Subject: [PATCH] style: use underscore for an unused loop variable (#1593) This addresses the SC2034 warning. --- setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.sh b/setup.sh index c39f1f0f..3b2c7855 100755 --- a/setup.sh +++ b/setup.sh @@ -31,7 +31,7 @@ check_and_start_docker() { # Wait for Docker to be fully operational with animated dots echo -n "Waiting for Docker to start" while ! docker system info > /dev/null 2>&1; do - for i in {1..3}; do + for _ in {1..3}; do echo -n "." sleep 1 done