mirror of
https://github.com/portainer/portainer.git
synced 2025-08-02 20:35:25 +02:00
+ silently continue when downloading artifacts in windows (#4637)
This commit is contained in:
parent
a6320d5222
commit
58c04bdbe3
3 changed files with 3 additions and 0 deletions
|
@ -3,6 +3,7 @@ param (
|
|||
)
|
||||
|
||||
$ErrorActionPreference = "Stop";
|
||||
$ProgressPreference = "SilentlyContinue";
|
||||
|
||||
New-Item -Path "docker-binary" -ItemType Directory | Out-Null
|
||||
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue