This commit is contained in:
Kroese 2023-04-16 17:52:42 +02:00 committed by GitHub
parent 0418fba2d1
commit 8c9cdc659d

View File

@ -52,5 +52,7 @@ set -m
) )
set +m set +m
# Wait for QEMU process to exit # Since we have to start the process with -m, we need to poll every intervall if it's still running
tail --pid="$(cat ${_QEMU_PID})" -f /dev/null while [ -d "/proc/$(cat ${_QEMU_PID})" ]; do
sleep 1
done