From 58c04bdbe362f41bc78212e366200cc6f2661e29 Mon Sep 17 00:00:00 2001 From: Yi Chen <69284638+yi-portainer@users.noreply.github.com> Date: Tue, 22 Dec 2020 13:47:11 +1300 Subject: [PATCH] + silently continue when downloading artifacts in windows (#4637) --- build/download_docker_binary.ps1 | 1 + build/download_kompose_binary.ps1 | 1 + build/download_kubectl_binary.ps1 | 1 + 3 files changed, 3 insertions(+) diff --git a/build/download_docker_binary.ps1 b/build/download_docker_binary.ps1 index b5d6b6c13..a567ff785 100644 --- a/build/download_docker_binary.ps1 +++ b/build/download_docker_binary.ps1 @@ -3,6 +3,7 @@ param ( ) $ErrorActionPreference = "Stop"; +$ProgressPreference = "SilentlyContinue"; New-Item -Path "docker-binary" -ItemType Directory | Out-Null diff --git a/build/download_kompose_binary.ps1 b/build/download_kompose_binary.ps1 index 4c6246d00..f88b2504e 100644 --- a/build/download_kompose_binary.ps1 +++ b/build/download_kompose_binary.ps1 @@ -3,5 +3,6 @@ param ( ) $ErrorActionPreference = "Stop"; +$ProgressPreference = "SilentlyContinue"; Invoke-WebRequest -O "dist/kompose.exe" "https://github.com/kubernetes/kompose/releases/download/$($kompose_version)/kompose-windows-amd64.exe" diff --git a/build/download_kubectl_binary.ps1 b/build/download_kubectl_binary.ps1 index fe12c8273..d5330762b 100644 --- a/build/download_kubectl_binary.ps1 +++ b/build/download_kubectl_binary.ps1 @@ -3,5 +3,6 @@ param ( ) $ErrorActionPreference = "Stop"; +$ProgressPreference = "SilentlyContinue"; Invoke-WebRequest -O "dist/kubectl.exe" "https://storage.googleapis.com/kubernetes-release/release/$($kubectl_version)/bin/windows/amd64/kubectl.exe"