[master] Update dependencies from dotnet/arcade (#6414)

* Update dependencies from https://github.com/dotnet/arcade build 20200214.5

- Microsoft.DotNet.Arcade.Sdk - 5.0.0-beta.20114.5

* Update dependencies from https://github.com/dotnet/arcade build 20200215.1

- Microsoft.DotNet.Arcade.Sdk - 5.0.0-beta.20115.1
This commit is contained in:
dotnet-maestro[bot] 2020-02-16 13:44:22 +00:00 committed by GitHub
parent 1876b3949a
commit 0b50c1bd88
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 5 additions and 72 deletions

View file

@ -252,7 +252,7 @@ function GetDotNetInstallScript {
# Use curl if available, otherwise use wget
if command -v curl > /dev/null; then
with_retries curl "$install_script_url" -isSLv --retry 10 --create-dirs -o "$install_script" || {
with_retries curl "$install_script_url" -sSL --retry 10 --create-dirs -o "$install_script" || {
local exit_code=$?
Write-PipelineTelemetryError -category 'InitializeToolset' "Failed to acquire dotnet install script (exit code '$exit_code')."
ExitWithExitCode $exit_code