Fix PowerShell syntax error in zip creation step

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-08 22:56:12 -04:00
parent 796d084ea6
commit 8646fa83c8
Vendored
+1 -1
View File
@@ -63,7 +63,7 @@ pipeline {
[System.IO.Compression.ZipFileExtensions]::CreateEntryFromFile($zip, $_.FullName, $entryName, "Optimal") | Out-Null
}
$zip.Dispose()
Write-Host "Created deploy.zip with $(($zip = [System.IO.Compression.ZipFile]::OpenRead('deploy.zip'); $zip.Entries.Count; $zip.Dispose())) entries using forward-slash paths"
Write-Host "deploy.zip created with forward-slash entry paths"
'''
withCredentials([azureServicePrincipal(
credentialsId: 'azure-pcl',