Fixing a regression in dotnet path.
This commit is contained in:
parent
71c171c052
commit
5e3eb96b12
|
|
@ -290,8 +290,8 @@ namespace E2ETests
|
||||||
|
|
||||||
var replaceStr = new StringBuilder().
|
var replaceStr = new StringBuilder().
|
||||||
Append("dotnet").
|
Append("dotnet").
|
||||||
Append((dotnetFlavor == DotnetFlavor.CoreClr) ? "-CoreCLR" : "-CLR").
|
Append((dotnetFlavor == DotnetFlavor.CoreClr) ? "-coreclr" : "-clr").
|
||||||
Append("win").
|
Append("-win").
|
||||||
Append((dotnetArchitecture == DotnetArchitecture.x86) ? "-x86" : "-x64").
|
Append((dotnetArchitecture == DotnetArchitecture.x86) ? "-x86" : "-x64").
|
||||||
ToString();
|
ToString();
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue