feat:remove “-q“ option of conda installation

This commit is contained in:
Kaning123 2026-03-13 21:35:24 +08:00
parent 53b17bd2d2
commit 99a2e356f2

View File

@ -52,7 +52,7 @@ function Invoke-Conda {
[string[]]$Args
)
$output = & conda install -y -q -c conda-forge @Args 2>&1
$output = & conda install -y -c conda-forge @Args 2>&1
$exitCode = $LASTEXITCODE
if ($exitCode -ne 0) {