We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d7d7f1 commit 8b2a1d1Copy full SHA for 8b2a1d1
tools/helper.psm1
@@ -83,9 +83,9 @@ function Install-Dotnet {
83
Invoke-WebRequest -Uri $obtainUrl/$installScript -OutFile $installScript
84
85
if ($IsWindowsEnv) {
86
- & .\$installScript -Channel $Channel -Version $Version
+ & .\$installScript -Channel $Channel -Version $Version -InstallDir "$env:ProgramFiles/dotnet"
87
} else {
88
- bash ./$installScript -c $Channel -v $Version
+ bash ./$installScript -c $Channel -v $Version --install-dir /usr/share/dotnet
89
}
90
91
finally {
0 commit comments