Fix shell lint baseline warnings

This commit is contained in:
Drew Ritter
2026-06-01 14:02:13 -07:00
parent d7c260a978
commit cb6bdf9dd3
5 changed files with 35 additions and 16 deletions

View File

@@ -23,7 +23,7 @@ if [[ -f "$PID_FILE" ]]; then
kill "$pid" 2>/dev/null || true
# Wait for graceful shutdown (up to ~2s)
for i in {1..20}; do
for _ in {1..20}; do
if ! kill -0 "$pid" 2>/dev/null; then
break
fi