Fix dotnet install errors (#13387)

This commit is contained in:
Travis Plunk 2020-08-10 09:06:04 -07:00 committed by GitHub
parent dd85bd1178
commit 5492df6cb4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2051,7 +2051,7 @@ function Find-Dotnet() {
if (precheck dotnet) {
# Must run from within repo to ensure global.json can specify the required SDK version
Push-Location $PSScriptRoot
$dotnetCLIInstalledVersion = Start-NativeExecution -sb { dotnet --version } -IgnoreExitcode
$dotnetCLIInstalledVersion = Start-NativeExecution -sb { dotnet --version } -IgnoreExitcode 2> $null
Pop-Location
if ($dotnetCLIInstalledVersion -ne $dotnetCLIRequiredVersion) {
Write-Warning "The 'dotnet' in the current path can't find SDK version ${dotnetCLIRequiredVersion}, prepending $dotnetPath to PATH."