mirror of https://github.com/Icinga/icinga2.git
Merge pull request #9746 from LordHepipud/patch-1
Adds ProgressPreference SilentlyContinue
This commit is contained in:
commit
a81f95d6ab
|
@ -91,6 +91,8 @@ if (-not $Env:GITHUB_ACTIONS) {
|
|||
ThrowOnNativeFailure
|
||||
}
|
||||
|
||||
# Disable the progress bar for downloads from the Web, which will speed up the entire download process
|
||||
$Global:ProgressPreference = 'SilentlyContinue';
|
||||
|
||||
Install-Exe -Url "https://packages.icinga.com/windows/dependencies/boost_$($BoostVersion -join '_')-msvc-${MsvcVersion}-${Env:BITS}.exe" -Dir "C:\local\boost_$($BoostVersion -join '_')-Win${Env:BITS}"
|
||||
|
||||
|
|
Loading…
Reference in New Issue