Skip to content

Commit

Permalink
- corrects script verbosity
Browse files Browse the repository at this point in the history
Signed-off-by: Vincent Biret <[email protected]>
  • Loading branch information
baywet committed Aug 23, 2023
1 parent d2b8282 commit af214cc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions it/compare-generation.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
2 changes: 1 addition & 1 deletion it/do-clean.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit af214cc

Please sign in to comment.