mirror of
https://github.com/Icinga/icinga2.git
synced 2025-04-08 17:05:25 +02:00
Adds ProgressPreference SilentlyContinue
We should use `$Global:ProgressPreference = 'SilentlyContinue';` to disable the progress bar during download. By doing so, information are directly written to the disk instead of written inside the memory and dumped to the disk afterwards
This commit is contained in:
parent
23feb5b374
commit
215dba9d0f
@ -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…
x
Reference in New Issue
Block a user