fix: Timeout comparison operator (#1155)

This commit is contained in:
Kroese
2026-05-17 13:01:57 +02:00
committed by GitHub
parent 342ca4da03
commit 6eadd1b953
+1 -1
View File
@@ -50,7 +50,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