Fixing a regression in dotnet path.

This commit is contained in:
Praburaj 2015-01-20 06:48:36 -08:00
parent 71c171c052
commit 5e3eb96b12
1 changed files with 2 additions and 2 deletions

View File

@ -290,8 +290,8 @@ namespace E2ETests
var replaceStr = new StringBuilder().
Append("dotnet").
Append((dotnetFlavor == DotnetFlavor.CoreClr) ? "-CoreCLR" : "-CLR").
Append("win").
Append((dotnetFlavor == DotnetFlavor.CoreClr) ? "-coreclr" : "-clr").
Append("-win").
Append((dotnetArchitecture == DotnetArchitecture.x86) ? "-x86" : "-x64").
ToString();