diff --git a/powershell/build.ps1 b/powershell/build.ps1 index f529d84d475..ec7d03b3bfc 100644 --- a/powershell/build.ps1 +++ b/powershell/build.ps1 @@ -3,7 +3,7 @@ param ( ) $toolsWin64Folder = Join-Path (Join-Path (Join-Path $cliFolder "powershell") "tools") "win64" -dotnet publish (Join-Path "extractor" "powershell.sln") -o $toolsWin64Folder +dotnet publish (Join-Path "extractor" "powershell.sln" | Resolve-Path) -o $toolsWin64Folder if ($LASTEXITCODE -ne 0) { Write-Host "Build failed" exit 1