fix: Don't redirect stdout

This commit is contained in:
Kroese 2023-05-27 07:13:43 +02:00 committed by GitHub
parent d132b6afa9
commit 3441350087

View File

@ -41,7 +41,7 @@ if [[ "${HOST_DEBUG}" == [Yy1]* ]]; then
{ set +x; } 2>/dev/null { set +x; } 2>/dev/null
echo echo
else else
./run/host.bin "${HOST_ARGS[@]}" > /dev/null 2>&1 & ./run/host.bin "${HOST_ARGS[@]}" 2> /dev/null &
fi fi
# Configure serial ports # Configure serial ports