From e415d8f6cc06a6455c2284b607816aab88be6ba9 Mon Sep 17 00:00:00 2001 From: Huiliang Liu Date: Tue, 16 Jul 2019 14:36:02 +0800 Subject: [PATCH] fix win curl tool link failure problem --- concourse/scripts/windows_remote_test.ps1 | 4 ---- 1 file changed, 4 deletions(-) diff --git a/concourse/scripts/windows_remote_test.ps1 b/concourse/scripts/windows_remote_test.ps1 index 8eade0fc92..d64aa87658 100644 --- a/concourse/scripts/windows_remote_test.ps1 +++ b/concourse/scripts/windows_remote_test.ps1 @@ -1,9 +1,5 @@ $progressPreference = 'silentlyContinue' Invoke-WebRequest -Uri https://aka.ms/vs/15/release/VC_redist.x64.exe -OutFile VC_redist.x64.exe Start-Process -FilePath "VC_redist.x64.exe" -ArgumentList "/passive" -Wait -Passthru -[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 -Invoke-WebRequest -Uri https://curl.haxx.se/windows/dl-7.64.1/curl-7.64.1-win64-mingw.zip -OutFile curl-7.64.1-win64-mingw.zip -Expand-Archive -LiteralPath curl-7.64.1-win64-mingw.zip -DestinationPath "C:\Program Files\" -move "C:\Program Files\curl-*-win64-mingw" "C:\Program Files\curl-win64-mingw" Start-Process msiexec.exe -Wait -ArgumentList '/I greenplum-clients-x86_64.msi /quiet' $env:PATH="C:\Program Files\Greenplum\greenplum-clients\bin;C:\Program Files\curl-win64-mingw\bin;" + $env:PATH -- GitLab