From cf3ba349fa8610f05e201921c0311286408c49b2 Mon Sep 17 00:00:00 2001 From: Dan Fandrich Date: Tue, 11 Jun 2024 14:49:35 -0700 Subject: [PATCH] FIXUP quoting --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e725f16..89f5ffa 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -78,9 +78,9 @@ jobs: set -x set -o pipefail # wine now needs the file extension on the executable when specified by path - EXE="$1".exe + EXE="\$1".exe shift - ls -l "$EXE" + ls -l "\$EXE" # Show all errors except for the ones about querying the display WINEDEBUG=-all,err+all,-winediag,-systray wine "\$EXE" "\$@" |& dos2unix EOF