From 2fb3aab41ade409bcd047fff87278598eb1c28bc Mon Sep 17 00:00:00 2001 From: amd64fox <62529699+amd64fox@users.noreply.github.com> Date: Fri, 30 Jun 2023 20:54:59 +0300 Subject: [PATCH] curl bug fix - bug fix if curl configuration file existed #454 Co-Authored-By: bzzrak <77467869+bzzrak@users.noreply.github.com> --- Install.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Install.ps1 b/Install.ps1 index 827fa47..4b416e9 100644 --- a/Install.ps1 +++ b/Install.ps1 @@ -407,7 +407,7 @@ function downloadSp() { if ($stcode -ne "200") { Write-Host "Curl error code: $stcode"; throw } - curl.exe $web_Url -o $local_Url --progress-bar --retry 3 --ssl-no-revoke + curl.exe -q $web_Url -o $local_Url --progress-bar --retry 3 --ssl-no-revoke return } if (!($curl_check ) -and $null -ne (Get-Module -Name BitsTransfer -ListAvailable)) { @@ -435,7 +435,7 @@ function downloadSp() { if ($stcode -ne "200") { Write-Host "Curl error code: $stcode"; throw } - curl.exe $web_Url -o $local_Url --progress-bar --retry 3 --ssl-no-revoke + curl.exe -q $web_Url -o $local_Url --progress-bar --retry 3 --ssl-no-revoke return } if (!($curl_check ) -and $null -ne (Get-Module -Name BitsTransfer -ListAvailable) -and !($curl_check )) {