This commit is contained in:
Kroese 2023-04-28 23:25:03 +02:00 committed by GitHub
parent 8e42acae58
commit e32dfc9c5b

View File

@ -80,8 +80,10 @@ set -m
) )
set +m set +m
PID="$(cat "${_QEMU_PID}")"
if (( KERNEL > 4 )); then if (( KERNEL > 4 )); then
pidwait -F "${_QEMU_PID}" & wait $! pidwait "$PID" & wait $!
else else
tail --pid "$(cat "${_QEMU_PID}")" --follow /dev/null & wait $! tail --pid "$PID" --follow /dev/null & wait $!
fi fi