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"