diff options
author | Bryan McLellan <btm@chef.io> | 2020-02-05 13:51:32 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-05 13:51:32 -0500 |
commit | b9767056a7bad2567f49e14e10ee3e7de04caad5 (patch) | |
tree | d5b2220258770c506a5e7e2335b61287cef89eab | |
parent | 60165c4f873eefa186cba6876c854e0dab3814a7 (diff) | |
parent | 7b9489218e56f2c7d13a848203e309cb1fef0d3d (diff) | |
download | chef-b9767056a7bad2567f49e14e10ee3e7de04caad5.tar.gz |
Merge pull request #9332 from chef/switch_windows
Pull the windows Ruby installer from S3 for tests
-rw-r--r-- | scripts/bk_tests/bk_win_functional.ps1 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/bk_tests/bk_win_functional.ps1 b/scripts/bk_tests/bk_win_functional.ps1 index e3a0328ef3..2c1799ba28 100644 --- a/scripts/bk_tests/bk_win_functional.ps1 +++ b/scripts/bk_tests/bk_win_functional.ps1 @@ -14,7 +14,7 @@ $ErrorActionPreference = 'Stop' echo "Downloading Ruby + DevKit" [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 -(New-Object System.Net.WebClient).DownloadFile('https://github.com/oneclick/rubyinstaller2/releases/download/RubyInstaller-2.6.5-1/rubyinstaller-devkit-2.6.5-1-x64.exe', 'c:\\rubyinstaller-devkit-2.6.5-1-x64.exe') +(New-Object System.Net.WebClient).DownloadFile('https://public-cd-buildkite-cache.s3-us-west-2.amazonaws.com/rubyinstaller-devkit-2.6.5-1-x64.exe', 'c:\\rubyinstaller-devkit-2.6.5-1-x64.exe') echo "Installing Ruby + DevKit" Start-Process c:\rubyinstaller-devkit-2.6.5-1-x64.exe -ArgumentList '/verysilent /dir=C:\\ruby26' -Wait |