This commit is contained in:
Nate McMaster 2017-03-21 14:23:03 -07:00
Родитель be1eb6b31c
Коммит f692ca7c8e
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: BD729980AA6A21BD
1 изменённых файлов: 3 добавлений и 3 удалений

6
build/dotnet/dotnet-install.sh поставляемый
Просмотреть файл

@ -513,9 +513,9 @@ download() {
local failed=false
if [ -z "$out_path" ]; then
curl --fail -s $remote_path || failed=true
curl --fail -sSL $remote_path || failed=true
else
curl --fail -s -o $out_path $remote_path || failed=true
curl --fail -sSL -o $out_path $remote_path || failed=true
fi
if [ "$failed" = true ]; then
@ -685,4 +685,4 @@ else
say "Binaries of dotnet can be found in $bin_path"
fi
say "Installation finished successfully."
say "Installation finished successfully."