Update installation paths in the build scripts

This commit is contained in:
Krzysztof Wicher 2016-03-03 11:35:47 -08:00
parent 4d165d78db
commit b130ac8776

View file

@ -37,12 +37,13 @@ namespace Microsoft.DotNet.Cli.Build
{
return Path.Combine(Directory.GetCurrentDirectory(), ".dotnet_stage0",
PlatformServices.Default.Runtime.OperatingSystemPlatform.ToString(),
PlatformServices.Default.Runtime.RuntimeArchitecture, "cli");
PlatformServices.Default.Runtime.RuntimeArchitecture, "bin");
}
else
{
return Path.Combine(Directory.GetCurrentDirectory(), ".dotnet_stage0", PlatformServices.Default.Runtime.OperatingSystemPlatform.ToString(), "cli");
return Path.Combine(Directory.GetCurrentDirectory(), ".dotnet_stage0", PlatformServices.Default.Runtime.OperatingSystemPlatform.ToString(), "share", "dotnet", "bin");
}
}
}
}