Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed some minor problems for the diagnostic team's repos. #1958

Merged
merged 2 commits into from
Feb 5, 2019

Conversation

mikem8361
Copy link
Member

Add optional architecture parameter to InstallDotNetSdk.

Trying this again with just what @tmat suggested.

@mikem8361 mikem8361 self-assigned this Feb 1, 2019
@mikem8361 mikem8361 requested a review from tmat February 1, 2019 23:14
& $installScript -Version $version -InstallDir $dotnetRoot
}
else {
& $installScript -Version $version -InstallDir $dotnetRoot -Architecture $architecture
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we can simplify:

$archArg = if ($architecture) { $architecture } else { "<auto>" }
& $installScript -Version $version -InstallDir $dotnetRoot -Architecture $archArg`

@mikem8361 mikem8361 merged commit 75be8f7 into dotnet:master Feb 5, 2019
@mikem8361 mikem8361 deleted the diagnostics branch February 5, 2019 05:35
@markwilkie
Copy link
Member

Thanks guys for working this out

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants