We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a3f272 commit be1de4cCopy full SHA for be1de4c
1 file changed
PSDepend/PSDependScripts/GitHub.ps1
@@ -445,7 +445,10 @@ if(($PSDependAction -contains 'Install') -and $ShouldInstall)
445
$OutPath = Join-Path ([System.IO.Path]::GetTempPath()) ([guid]::NewGuid().guid)
446
New-Item -ItemType Directory -Path $OutPath -Force | Out-Null
447
$OutFile = Join-Path $OutPath "$DependencyVersion.zip"
448
+ $PreviousProgressPreference=$ProgressPreference
449
+ $ProgressPreference='SilentlyContinue'
450
Invoke-RestMethod -Uri $URL -OutFile $OutFile
451
+ $ProgressPreference=$PreviousProgressPreference
452
453
if(-not (Test-Path $OutFile))
454
{
0 commit comments