ci: Remove quirk that runs dummy command after wineserver

The underlying issue is now worked around in upstream, see
https://github.com/mstorsjo/msvc-wine/issues/47 for details.
This commit is contained in:
Tim Ruffing
2023-05-23 11:28:47 +02:00
committed by Hennadii Stepanov
parent c7db4942b3
commit db29bf220c

View File

@@ -36,8 +36,7 @@ case "$WRAPPER_CMD" in
*wine*)
# Make sure to shutdown wineserver whenever we exit.
trap "wineserver -k || true" EXIT INT HUP
# This is apparently only reliable when we run a dummy command such as "hh.exe" afterwards.
wineserver -p && wine hh.exe
wineserver -p
;;
esac