Reenable UpdateVersionsRepo

Now that https://github.com/dotnet/buildtools/issues/1547 is fixed.
This commit is contained in:
Eric Erhardt 2017-06-23 08:53:04 -05:00
parent f4d884a03d
commit 6119a29f83
3 changed files with 5 additions and 5 deletions

View file

@ -82,7 +82,8 @@ namespace Microsoft.DotNet.Scripts
private static string GetDefaultCoreSetupVersionFragment()
{
string coreSetupChannel = GetRepoMSBuildPropValue("BundledRuntimes.props", "CoreSetupChannel") ?? "master";
// by default, the current core-setup branch should match the current cli branch name
string coreSetupChannel = Instance.GitHubUpstreamBranch;
return $"dotnet/core-setup/{coreSetupChannel}";
}