From b38a271b48dc5f6aff8c22bfbe4a5b625eb0bf06 Mon Sep 17 00:00:00 2001 From: Alexander Grund Date: Sun, 2 Nov 2025 14:44:38 +0100 Subject: [PATCH] Fix format of ICU_PATH in project-config.jam It needs forward slashes even on Windows --- .github/workflows/ci.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d6ec0c1..a5ad7fe 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -440,9 +440,7 @@ jobs: - name: Setup ICU shell: pwsh run: | - $icuPath = Join-Path $pwd.Path "ICU" - Write-Host "ICU path to be added: $icuPath" - Write-Host "" + $icuPath = (Join-Path $pwd "ICU") -replace '\\', '/' if (-not (Test-Path $icuPath)) { Write-Error "ICU directory not found at $icuPath"