Skip to content

Commit

Permalink
fixup! CI: set environment in windows variable properly
Browse files Browse the repository at this point in the history
  • Loading branch information
Puerling committed Sep 12, 2024
1 parent ce53579 commit 597d419
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -206,11 +206,11 @@ jobs:
choco upgrade llvm
if ($env:CMAKE_FLAGS) {
$env:CMAKE_FLAGS = "$($env:CMAKE_FLAGS) -G Ninja"
$env:CMAKE_FLAGS = "${env:CMAKE_FLAGS} -G Ninja"
} else {
$env:CMAKE_FLAGS = "-G Ninja"
}
"CMAKE_FLAGS=$($env:CMAKE_FLAGS)" | Out-File -FilePath $env:GITHUB_ENV -Append
"CMAKE_FLAGS=\"${env:CMAKE_FLAGS}\"" | Out-File -FilePath $env:GITHUB_ENV -Append
- uses: actions/setup-python@v4
with:
Expand Down

0 comments on commit 597d419

Please sign in to comment.