Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Point to the new domains / URLs from Microsoft in dotnet-install #6574

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions tracer/build/_build/bootstrap/dotnet-install.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -1105,8 +1105,8 @@ function Get-AkaMsLink-And-Version([string] $NormalizedChannel, [string] $Normal
function Get-Feeds-To-Use()
{
$feeds = @(
"https://dotnetcli.azureedge.net/dotnet",
"https://dotnetbuilds.azureedge.net/public"
"https://builds.dotnet.microsoft.com/dotnet",
"https://ci.dot.net/public"
)

if (-not [string]::IsNullOrEmpty($AzureFeed)) {
Expand All @@ -1115,8 +1115,8 @@ function Get-Feeds-To-Use()

if ($NoCdn) {
$feeds = @(
"https://dotnetcli.blob.core.windows.net/dotnet",
"https://dotnetbuilds.blob.core.windows.net/public"
"https://builds.dotnet.microsoft.com/dotnet",
"https://ci.dot.net/public"
)

if (-not [string]::IsNullOrEmpty($UncachedFeed)) {
Expand Down
8 changes: 4 additions & 4 deletions tracer/build/_build/bootstrap/dotnet-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -1298,8 +1298,8 @@ get_download_link_from_aka_ms() {
get_feeds_to_use()
{
feeds=(
"https://dotnetcli.azureedge.net/dotnet"
"https://dotnetbuilds.azureedge.net/public"
"https://builds.dotnet.microsoft.com/dotnet"
"https://ci.dot.net/public"
)

if [[ -n "$azure_feed" ]]; then
Expand All @@ -1308,8 +1308,8 @@ get_feeds_to_use()

if [[ "$no_cdn" == "true" ]]; then
feeds=(
"https://dotnetcli.blob.core.windows.net/dotnet"
"https://dotnetbuilds.blob.core.windows.net/public"
"https://builds.dotnet.microsoft.com/dotnet"
"https://ci.dot.net/public"
)

if [[ -n "$uncached_feed" ]]; then
Expand Down
Loading