From d5e3ed89071663da639f1e2189d46d5c03ecfafe Mon Sep 17 00:00:00 2001 From: Kroese Date: Tue, 18 Jul 2023 19:34:49 +0200 Subject: [PATCH] fix: Fix for issue https://github.com/kroese/virtual-dsm/issues/292 --- run/run.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/run/run.sh b/run/run.sh index ff4856f..5aa8688 100755 --- a/run/run.sh +++ b/run/run.sh @@ -95,6 +95,6 @@ set +m if (( KERNEL > 5 )) || ( (( KERNEL == 5 )) && (( MINOR > 10 )) ); then pidwait -F "${_QEMU_PID}" & wait $! -else - tail --pid "$(cat "${_QEMU_PID}")" --follow /dev/null & wait $! fi + +tail --pid "$(cat "${_QEMU_PID}")" --follow /dev/null & wait $!