mirror of
https://github.com/Icinga/icinga2.git
synced 2025-07-23 21:55:03 +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
8238ec0d96
commit
e798f64fe3
@ -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