1 parent ddb984d commit 23ffb23Copy full SHA for 23ffb23
1 file changed
.github/workflows/ci_windows_arm64_native.yaml
@@ -133,7 +133,8 @@ jobs:
133
134
Set-Location libtorrent
135
$boostRoot = (Get-Item "${{ env.boost_root }}").FullName.Replace('\\', '/')
136
- $libtorrentRoot = (Resolve-Path "${{ env.libtorrent_root }}").Path.Replace('\\', '/')
+ New-Item -ItemType Directory -Path "${{ env.libtorrent_root }}" -Force | Out-Null
137
+ $libtorrentRoot = [System.IO.Path]::GetFullPath("${{ env.libtorrent_root }}").Replace('\\', '/')
138
$toolchain = "$env:VCPKG_ROOT/scripts/buildsystems/vcpkg.cmake"
139
140
cmake `
0 commit comments