2
0
mirror of https://github.com/boostorg/locale.git synced 2026-01-19 04:22:08 +00:00

Fix format of ICU_PATH in project-config.jam

It needs forward slashes even on Windows
This commit is contained in:
Alexander Grund
2025-11-02 14:44:38 +01:00
parent 5b1acded7f
commit b38a271b48

View File

@@ -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"