Skip to content

Commit

Permalink
Try removing escaped quotes from bash command in Build Qt workflow
Browse files Browse the repository at this point in the history
On Windows, the job has started failing with the error:
/usr/bin/bash: "-l": No such file or directory
  • Loading branch information
martinburchell committed Feb 8, 2024
1 parent 5e265b4 commit 3119607
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build-qt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ jobs:
run: |
$ErrorActionPreference = "Stop"
echo "Installing msys packages..."
C:\tools\msys64\usr\bin\bash `"-l`" `"-c`" `"pacman -S --noconfirm make yasm diffutils awk`"
C:\tools\msys64\usr\bin\bash -l -c `"pacman -S --noconfirm make yasm diffutils awk`"
echo "Done."
- name: restore ccache
Expand Down

0 comments on commit 3119607

Please sign in to comment.