Merge pull request #8033 from bowdenk7/jakeChange

Reorder host in jakefile so TYPESCRIPT_HOST is checked before localhost
This commit is contained in:
Ryan Cavanaugh
2016-04-12 15:15:06 -07:00

View File

@@ -244,7 +244,7 @@ function concatenateFiles(destinationFile, sourceFiles) {
}
var useDebugMode = true;
var host = (process.env.host || process.env.TYPESCRIPT_HOST || "node");
var host = (process.env.TYPESCRIPT_HOST || process.env.host || "node");
var compilerFilename = "tsc.js";
var LKGCompiler = path.join(LKGDirectory, compilerFilename);
var builtLocalCompiler = path.join(builtLocalDirectory, compilerFilename);