Skip to content

Commit

Permalink
Update dotnet-install.ps1
Browse files Browse the repository at this point in the history
  • Loading branch information
Zachary Eisinger authored Jul 20, 2020
1 parent c8eda6f commit 706116e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/dotnet-install.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ param(
[string]$FeedCredential,
[string]$ProxyAddress,
[switch]$ProxyUseDefaultCredentials,
[string]$ProxyBypassList="",
[string[]]$ProxyBypassList,
[switch]$SkipNonVersionedFiles,
[switch]$NoCdn
)
Expand Down Expand Up @@ -259,7 +259,7 @@ function GetHTTPResponse([Uri] $Uri)
$HttpClientHandler.Proxy = New-Object System.Net.WebProxy -Property @{
Address=$ProxyAddress;
UseDefaultCredentials=$ProxyUseDefaultCredentials;
BypassList = $ProxyBypassList.Split(",")
BypassList = $ProxyBypassList;
}
$HttpClient = New-Object System.Net.Http.HttpClient -ArgumentList $HttpClientHandler
}
Expand Down

0 comments on commit 706116e

Please sign in to comment.