Skip to content

Commit

Permalink
Point to the new domains / URLs from Microsoft
Browse files Browse the repository at this point in the history
See: dotnet/core#9671

They are changing CDNs.
These changes have already been added in
the official install scripts.

https://github.com/dotnet/install-scripts/pull/555/files
  • Loading branch information
bouwkast committed Jan 17, 2025
1 parent 7925730 commit e6044ff
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
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

0 comments on commit e6044ff

Please sign in to comment.