From 577be226fe696875680c6d6b27c694f29013db23 Mon Sep 17 00:00:00 2001 From: Kroese Date: Mon, 20 Jul 2026 13:29:29 +0200 Subject: [PATCH] fix: Prevent races during interactive QEMU shutdown (#1906) --- src/entry.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/entry.sh b/src/entry.sh index 00bd2539..a0d57f87 100644 --- a/src/entry.sh +++ b/src/entry.sh @@ -57,7 +57,7 @@ if ! interactive; then "${cmd[@]}" ${ARGS:+ $ARGS} >"$pipe" 2>&1 & else startConsole "$pipe" - setsid -w "${cmd[@]}" ${ARGS:+ $ARGS} "$pipe" 2>&1 & + startQemu "${cmd[@]}" ${ARGS:+ $ARGS} >"$pipe" 2>&1 fi pid=$!