diff --git a/it/compare-generation.ps1 b/it/compare-generation.ps1 index 3122606029..c8c40cf710 100755 --- a/it/compare-generation.ps1 +++ b/it/compare-generation.ps1 @@ -107,8 +107,9 @@ else { } if ($dev -eq $false) { - Compress-Archive -Path $tmpFolder1 -DestinationPath $archivePath1 -Verbose - Compress-Archive -Path $tmpFolder1 -DestinationPath $archivePath2 -Verbose + Write-Host "Creating archives at location $archivePath1 and $archivePath2" + Compress-Archive -Path $tmpFolder1 -DestinationPath $archivePath1 + Compress-Archive -Path $tmpFolder1 -DestinationPath $archivePath2 } Exit 1 } diff --git a/it/do-clean.ps1 b/it/do-clean.ps1 index 464017dbfc..923fb4c9ee 100755 --- a/it/do-clean.ps1 +++ b/it/do-clean.ps1 @@ -34,4 +34,4 @@ $archiveLocation = Join-Path -Path $PSScriptRoot -ChildPath "$language.zip" if (Test-Path $archiveLocation) { Remove-Item $archiveLocation -Force -ErrorAction SilentlyContinue -Verbose } -Compress-Archive -Path $testPath -DestinationPath $archiveLocation -Verbose +Compress-Archive -Path $testPath -DestinationPath $archiveLocation