From 9f8d3701b532ebc251c9e1264334f6eaf911d2ba Mon Sep 17 00:00:00 2001 From: martincostello Date: Sun, 13 Feb 2022 14:05:28 +0000 Subject: [PATCH] Disable download progress Disable showing the download progress bar when downloading files. --- build.ps1 | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build.ps1 b/build.ps1 index 0a1cda3f5c3..6838e1e840c 100755 --- a/build.ps1 +++ b/build.ps1 @@ -42,6 +42,9 @@ Param( [switch]$Verbose ) +$ErrorActionPreference = "Stop" +$ProgressPreference = "SilentlyContinue" + Write-Host "Preparing to run build script..." # Should we show verbose messages?