Skip to content

Commit

Permalink
SQ wine now needs the file extension on the executable when specified…
Browse files Browse the repository at this point in the history
… by path
  • Loading branch information
dfandrich committed Jun 11, 2024
1 parent 21d04b4 commit d358b05
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,11 @@ jobs:
cat >wine-wrapper <<EOF
#!/bin/bash
set -o pipefail
# wine now needs the file extension on the executable when specified by path
EXE="$1".exe
shift
# Show all errors except for the ones about querying the display
WINEDEBUG=-all,err+all,-explorer,-rpc,-winediag,-systray wine "\$@" |& dos2unix
WINEDEBUG=-all,err+all,-winediag,-systray wine "\$EXE" "\$@" |& dos2unix
EOF
chmod 755 wine-wrapper
# Run wine once to set it up, which displays some logs that would mess up tests
Expand Down

0 comments on commit d358b05

Please sign in to comment.