Skip to content

Commit 6f3f721

Browse files
committed
Fix missing quoting for setting PATH in Windows CI
1 parent 86016d3 commit 6f3f721

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@ jobs:
5151
- name: Install libopus (Windows only)
5252
if: runner.os == 'Windows'
5353
run: |
54-
set PATH=C:\msys64\usr\bin;%PATH%
54+
set "PATH=C:\msys64\usr\bin;%PATH%"
5555
pacman --noconfirm -S mingw64/mingw-w64-x86_64-opus mingw64/mingw-w64-x86_64-pkg-config
56-
set GITHUB_PATH=C:\msys64\mingw64\bin;%GITHUB_PATH%
56+
set "GITHUB_PATH=C:\msys64\mingw64\bin;%GITHUB_PATH%"
5757
5858
- name: Build the project
5959
run: cabal build

0 commit comments

Comments
 (0)