fix: Local variable declaration (#1736)

This commit is contained in:
Kroese
2026-05-17 10:51:00 +02:00
committed by GitHub
parent 8c57b119cf
commit 2412a3ed18
4 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -97,7 +97,7 @@ finish() {
# Workaround for zombie pid
[ ! -s "$QEMU_PID" ] && break
if [ "$cnt" == "5" ]; then
if [ "$cnt" -eq 5 ]; then
echo && error "QEMU did not terminate itself, forcefully killing process..."
{ kill -9 "$pid" || true; } 2>/dev/null
fi