From e33203a3b00f064038a15c2b667a5853f2755e97 Mon Sep 17 00:00:00 2001 From: Bowden Kelly Date: Tue, 12 Apr 2016 13:19:04 -0700 Subject: [PATCH] Reorder host in jakefile so TYPESCRIPT_HOST is checked before localhost --- Jakefile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jakefile.js b/Jakefile.js index 125e0f2b561..6223f9a9772 100644 --- a/Jakefile.js +++ b/Jakefile.js @@ -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);