Browse Source

fixed capitalization issues with accessing the typescript node module from the build in case-sensitive environments

Shaddock Heath 10 years ago
parent
commit
26007f4104
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Build/Scripts/BuildCommon.js

+ 1 - 1
Build/Scripts/BuildCommon.js

@@ -16,7 +16,7 @@ namespace('build', function() {
         var modules = host.getScriptModules(platform);
         var bindCmd = host.atomicTool + " bind \"" + atomicRoot + "\" ";
         var node;
-        var tsc = "./Build/node_modules/typeScript/lib/tsc";
+        var tsc = "./Build/node_modules/typescript/lib/tsc";
         var tslint = "./Build/node_modules/tslint/lib/tslint-cli";
 
         switch(os.platform()) {