Skip to content

Commit

Permalink
Replace \ with / for Windows commands in Github Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
dangillet committed Feb 8, 2025
1 parent 1c015e8 commit fd4b072
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ jobs:
- name: Install Windows dependencies
if: startsWith(matrix.os, 'windows')
run: |
nuget install Gettext.Tools -OutputDirectory c:\nuget;
$gettextPath = (Get-ChildItem -Path "C:\nuget" -Directory -Filter "Gettext.Tools.*" | Select-Object -First 1).FullName;
Add-Content $env:GITHUB_PATH "$gettextPath\tools\bin"
nuget install Gettext.Tools -OutputDirectory c:/nuget;
$gettextPath = (Get-ChildItem -Path "C:/nuget" -Directory -Filter "Gettext.Tools.*" | Select-Object -First 1).FullName;
Add-Content $env:GITHUB_PATH "$gettextPath/tools/bin"
- name: Install uv
uses: hynek/setup-cached-uv@v2
Expand Down

0 comments on commit fd4b072

Please sign in to comment.