From db29bf220c73bc71b9d48c262ba2e88c1e741f92 Mon Sep 17 00:00:00 2001 From: Tim Ruffing Date: Tue, 23 May 2023 11:28:47 +0200 Subject: [PATCH] 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. --- ci/cirrus.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ci/cirrus.sh b/ci/cirrus.sh index b2af03bb5d..5e39e4d518 100755 --- a/ci/cirrus.sh +++ b/ci/cirrus.sh @@ -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