Silent extraction

This commit is contained in:
Thomas Krijnen
2026-05-08 20:18:31 +02:00
parent e7249fe934
commit 12935c83de
4 changed files with 18 additions and 38 deletions
+5 -1
View File
@@ -48,7 +48,11 @@ jobs:
run: |
cd ${{ matrix.deps_dir }}
Get-ChildItem -Path . -Filter 'cache-*.zip' | ForEach-Object {
7z x $_.FullName
Write-Host "Extracting $($_.Name)"
7z x -bso0 -bsp0 $_.FullName
if ($LASTEXITCODE -ne 0) {
throw "Failed to extract $($_.Name) with 7z exit code $LASTEXITCODE."
}
}
- name: ccache