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:
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user