Limit the messages emitted by wine

This commit is contained in:
Manuel Thalmann 2023-03-24 22:56:36 +00:00
parent e19332314e
commit e42cd21de8

View file

@ -81,7 +81,7 @@ RUN \
try=$1; \ try=$1; \
# Run installer asynchronously # Run installer asynchronously
{ \ { \
{ /usr/bin/entrypoint wine MDK537.exe --batch-install 2>&1 || echo "exit $?"; } \ { WINEDEBUG=+all,trace-all,warn-all /usr/bin/entrypoint wine MDK537.exe --batch-install 2>&1 || echo "exit $?"; } \
# Write output to `log.txt` # Write output to `log.txt`
| { [ $DEBUG -eq 1 ] && tee log.txt || cat; } \ | { [ $DEBUG -eq 1 ] && tee log.txt || cat; } \
# Pipe stdout and stderr to `handle_output` function # Pipe stdout and stderr to `handle_output` function