Skip to content

Commit 23ffb23

Browse files
committed
ci: create libtorrent install dir before path normalization
1 parent ddb984d commit 23ffb23

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/ci_windows_arm64_native.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,8 @@ jobs:
133133
134134
Set-Location libtorrent
135135
$boostRoot = (Get-Item "${{ env.boost_root }}").FullName.Replace('\\', '/')
136-
$libtorrentRoot = (Resolve-Path "${{ env.libtorrent_root }}").Path.Replace('\\', '/')
136+
New-Item -ItemType Directory -Path "${{ env.libtorrent_root }}" -Force | Out-Null
137+
$libtorrentRoot = [System.IO.Path]::GetFullPath("${{ env.libtorrent_root }}").Replace('\\', '/')
137138
$toolchain = "$env:VCPKG_ROOT/scripts/buildsystems/vcpkg.cmake"
138139
139140
cmake `

0 commit comments

Comments
 (0)