Skip to content

Commit e5936a3

Browse files
committed
Fix Windows micromamba path detection
1 parent d417c72 commit e5936a3

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

scripts/ci/install-llvm-21-windows.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ function Expand-TarBz2 {
8686
$Stage = Join-Path $Destination "_stage"
8787
New-Item -ItemType Directory -Force -Path $Stage | Out-Null
8888

89-
& $SevenZip x -y -bb0 "-o$Stage" $Archive
89+
& $SevenZip x -y -bb0 "-o$Stage" $Archive | Out-Null
9090
if ($LASTEXITCODE -ne 0) {
9191
throw "7-Zip failed to decompress $Archive with exit code $LASTEXITCODE"
9292
}
@@ -96,7 +96,7 @@ function Expand-TarBz2 {
9696
throw "7-Zip did not produce a .tar payload from $Archive"
9797
}
9898

99-
& $SevenZip x -y -bb0 "-o$Destination" $TarArchive.FullName
99+
& $SevenZip x -y -bb0 "-o$Destination" $TarArchive.FullName | Out-Null
100100
if ($LASTEXITCODE -ne 0) {
101101
throw "7-Zip failed to extract $($TarArchive.Name) with exit code $LASTEXITCODE"
102102
}
@@ -110,7 +110,7 @@ function Expand-TarBz2 {
110110
throw "7-Zip or tar.exe is required to extract micromamba on Windows"
111111
}
112112

113-
& $Tar.Source -xjf $Archive -C $Destination
113+
& $Tar.Source -xjf $Archive -C $Destination | Out-Null
114114
if ($LASTEXITCODE -ne 0) {
115115
throw "tar.exe failed to extract $Archive with exit code $LASTEXITCODE"
116116
}

0 commit comments

Comments
 (0)