Skip to content

Commit f01f959

Browse files
Update url from which the dotnet-install script is obtained
1 parent 83c3157 commit f01f959

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

azure-pipelines-e2e-integration-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ pool:
1818

1919
steps:
2020
- pwsh: |
21-
Invoke-WebRequest 'https://raw.githubusercontent.com/dotnet/cli/master/scripts/obtain/dotnet-install.ps1' -OutFile 'dotnet-install.ps1'
21+
Invoke-WebRequest 'https://raw.githubusercontent.com/dotnet/install-scripts/main/src/dotnet-install.ps1' -OutFile 'dotnet-install.ps1'
2222
./dotnet-install.ps1 -InstallDir "$env:ProgramFiles/dotnet" -Version "6.0.100" -Channel 'release'
2323
displayName: 'Install the .Net version used by the Core Tools for Windows'
2424
condition: eq( variables['Agent.OS'], 'Windows_NT' )
2525

2626
- bash: |
27-
curl -sSL https://raw.githubusercontent.com/dotnet/cli/master/scripts/obtain/dotnet-install.sh | sudo bash /dev/stdin -v '6.0.100' -c 'release' --install-dir /usr/share/dotnet
27+
curl -sSL https://raw.githubusercontent.com/dotnet/install-scripts/main/src/dotnet-install.sh | sudo bash /dev/stdin -v '6.0.100' -c 'release' --install-dir /usr/share/dotnet
2828
displayName: 'Install the .Net version used by the Core Tools for Linux'
2929
condition: eq( variables['Agent.OS'], 'Linux' )
3030

azure-pipelines.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,13 +59,13 @@ steps:
5959
displayName: 'Running UnitTest'
6060

6161
- pwsh: |
62-
Invoke-WebRequest 'https://raw.githubusercontent.com/dotnet/cli/master/scripts/obtain/dotnet-install.ps1' -OutFile 'dotnet-install.ps1'
62+
Invoke-WebRequest 'https://raw.githubusercontent.com/dotnet/install-scripts/main/src/dotnet-install.ps1' -OutFile 'dotnet-install.ps1'
6363
./dotnet-install.ps1 -InstallDir "$env:ProgramFiles/dotnet" -Version "6.0.100" -Channel 'release'
6464
displayName: 'Install the .Net version used by the Core Tools for Windows'
6565
condition: eq( variables['Agent.OS'], 'Windows_NT' )
6666

6767
- bash: |
68-
curl -sSL https://raw.githubusercontent.com/dotnet/cli/master/scripts/obtain/dotnet-install.sh | sudo bash /dev/stdin -v '6.0.100' -c 'release' --install-dir /usr/share/dotnet
68+
curl -sSL https://raw.githubusercontent.com/dotnet/install-scripts/main/src/dotnet-install.sh | sudo bash /dev/stdin -v '6.0.100' -c 'release' --install-dir /usr/share/dotnet
6969
displayName: 'Install the .Net version used by the Core Tools for Linux'
7070
condition: eq( variables['Agent.OS'], 'Linux' )
7171

0 commit comments

Comments
 (0)