Enable MusicStore tests to be run

This commit is contained in:
Kiran Challa 2015-09-01 15:00:32 -07:00
parent e717011d9c
commit edd17c020e
1 changed files with 3 additions and 3 deletions

View File

@ -153,11 +153,11 @@ var buildTarget = "compile"
} }
Log.Info("No conflicts in repos, continuing with creating release branch."); Log.Info("No conflicts in repos, continuing with creating release branch.");
foreach (var repo in GetAllRepos()) foreach (var repo in GetAllRepos())
{ {
GitCommand(repo, "checkout origin/dev -B release"); GitCommand(repo, "checkout origin/dev -B release");
// Update NuGet.Config // Update NuGet.Config
var nugetConfigPath = Path.Combine(repo, "NuGet.config"); var nugetConfigPath = Path.Combine(repo, "NuGet.config");
if (File.Exists(nugetConfigPath)) if (File.Exists(nugetConfigPath))
@ -565,7 +565,6 @@ functions
var nonDefaultRepos = new[] var nonDefaultRepos = new[]
{ {
"DNX", "DNX",
"MusicStore",
"Coherence", "Coherence",
"Coherence-Signed", "Coherence-Signed",
"dnvm", "dnvm",
@ -733,6 +732,7 @@ functions
"SignalR-SQLServer", "SignalR-SQLServer",
"SignalR-Redis", "SignalR-Redis",
"Entropy", "Entropy",
"MusicStore"
}; };
var repositoryInclude = Environment.GetEnvironmentVariable("KOREBUILD_REPOSITORY_INCLUDE"); var repositoryInclude = Environment.GetEnvironmentVariable("KOREBUILD_REPOSITORY_INCLUDE");