Skip to content

Commit 0088e70

Browse files
committed
- another attempt at fixing archives upload
Signed-off-by: Vincent Biret <[email protected]>
1 parent a48bd9f commit 0088e70

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

it/compare-generation.ps1

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -101,15 +101,15 @@ else {
101101
$archivePath2 = Join-Path $rootPath -ChildPath "idempotency-folder2.zip"
102102

103103
if (Test-Path $archivePath1) {
104-
Remove-Item $archivePath1 -Force
104+
Remove-Item $archivePath1 -Force -Verbose
105105
}
106106
if (Test-Path $archivePath2) {
107-
Remove-Item $archivePath2 -Force
107+
Remove-Item $archivePath2 -Force -Verbose
108108
}
109109

110110
if ($dev -eq $false) {
111-
Compress-Archive -Path $tmpFolder1 -DestinationPath $archivePath1
112-
Compress-Archive -Path $tmpFolder1 -DestinationPath $archivePath2
113-
Exit 1
111+
Compress-Archive -Path $tmpFolder1 -DestinationPath $archivePath1 -Verbose
112+
Compress-Archive -Path $tmpFolder1 -DestinationPath $archivePath2 -Verbose
114113
}
114+
Exit 1
115115
}

0 commit comments

Comments
 (0)