Skip to content

Commit b38a271

Browse files
committed
Fix format of ICU_PATH in project-config.jam
It needs forward slashes even on Windows
1 parent 5b1acde commit b38a271

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -440,9 +440,7 @@ jobs:
440440
- name: Setup ICU
441441
shell: pwsh
442442
run: |
443-
$icuPath = Join-Path $pwd.Path "ICU"
444-
Write-Host "ICU path to be added: $icuPath"
445-
Write-Host ""
443+
$icuPath = (Join-Path $pwd "ICU") -replace '\\', '/'
446444
447445
if (-not (Test-Path $icuPath)) {
448446
Write-Error "ICU directory not found at $icuPath"

0 commit comments

Comments
 (0)