Add --no-progress flag to choco install (#3238)

This commit is contained in:
Mikhail Timofeev
2021-04-22 18:38:35 +03:00
committed by GitHub
parent f2852367e5
commit 5690645f0e

View File

@@ -12,7 +12,7 @@ function Choco-Install {
while($true) while($true)
{ {
Write-Host "Running [#$count]: choco install $packageName -y $argumentList" Write-Host "Running [#$count]: choco install $packageName -y $argumentList"
choco install $packageName -y @argumentList choco install $packageName -y @argumentList --no-progress
$pkg = choco list --localonly $packageName --exact --all --limitoutput $pkg = choco list --localonly $packageName --exact --all --limitoutput
if ($pkg) { if ($pkg) {