Skip to content

Commit fd4b072

Browse files
author
Daniel Gillet
committed
Replace \ with / for Windows commands in Github Actions
1 parent 1c015e8 commit fd4b072

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@ jobs:
4545
- name: Install Windows dependencies
4646
if: startsWith(matrix.os, 'windows')
4747
run: |
48-
nuget install Gettext.Tools -OutputDirectory c:\nuget;
49-
$gettextPath = (Get-ChildItem -Path "C:\nuget" -Directory -Filter "Gettext.Tools.*" | Select-Object -First 1).FullName;
50-
Add-Content $env:GITHUB_PATH "$gettextPath\tools\bin"
48+
nuget install Gettext.Tools -OutputDirectory c:/nuget;
49+
$gettextPath = (Get-ChildItem -Path "C:/nuget" -Directory -Filter "Gettext.Tools.*" | Select-Object -First 1).FullName;
50+
Add-Content $env:GITHUB_PATH "$gettextPath/tools/bin"
5151
5252
- name: Install uv
5353
uses: hynek/setup-cached-uv@v2

0 commit comments

Comments
 (0)