Skip to content

Commit b94da72

Browse files
committed
[DO NOT MERGE] Install scripts update validation PR
1 parent 7f1e7a5 commit b94da72

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

eng/common/tools.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ function GetDotNetInstallScript([string] $dotnetRoot) {
273273
if ($shouldDownload) {
274274
Create-Directory $dotnetRoot
275275
$ProgressPreference = 'SilentlyContinue' # Don't display the console progress UI - it's a huge perf hit
276-
$uri = "https://builds.dotnet.microsoft.com/dotnet/scripts/$dotnetInstallScriptVersion/dotnet-install.ps1"
276+
$uri = "https://raw.githubusercontent.com/dotnet/install-scripts/main/src/dotnet-install.ps1"
277277

278278
Retry({
279279
Write-Host "GET $uri"

eng/common/tools.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ function with_retries {
299299
function GetDotNetInstallScript {
300300
local root=$1
301301
local install_script="$root/dotnet-install.sh"
302-
local install_script_url="https://builds.dotnet.microsoft.com/dotnet/scripts/$dotnetInstallScriptVersion/dotnet-install.sh"
302+
local install_script_url="https://raw.githubusercontent.com/dotnet/install-scripts/main/src/dotnet-install.sh"
303303
local timestamp_file="$root/.dotnet-install.timestamp"
304304
local should_download=false
305305

0 commit comments

Comments
 (0)