remove stderr progress for 7-zip

This commit is contained in:
David Refoua 2022-10-15 01:44:07 +03:30 committed by GitHub
parent e8d34e07a1
commit 9f395805e1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -29,7 +29,7 @@ function Delete-Existing($path) {
function Extract-Archive($source, $target) {
Write-Verbose $("Extracting Archive '$cmder_root\vendor\" + $source.replace('/','\') + " to '$cmder_root\vendor\$target'")
Invoke-Expression "7z x -bsp2 -y -o`"$($target)`" `"$source`" > `$null"
Invoke-Expression "7z x -y -o`"$($target)`" `"$source`" > `$null"
if ($lastexitcode -ne 0) {
Write-Error "Extracting of $source failed"
}
@ -37,7 +37,7 @@ function Extract-Archive($source, $target) {
}
function Create-Archive($source, $target, $params) {
$command = "7z a -x@`"$source\packignore`" -bsp2 $params $target $source > `$null"
$command = "7z a -x@`"$source\packignore`" $params $target $source > `$null"
Write-Verbose "Creating Archive from '$source' in '$target' with parameters '$params'"
Invoke-Expression $command
if ($lastexitcode -ne 0) {