Sfoglia il codice sorgente

Merge pull request #597 from AtomicGameEngine/JME-ATOMIC-FIXNODEPATH

Fix node path so command doesn't see it as a switch
JoshEngebretson 10 anni fa
parent
commit
27b0cec138
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. 2 2
      Build/Scripts/BuildCommon.js

+ 2 - 2
Build/Scripts/BuildCommon.js

@@ -61,8 +61,8 @@ namespace('build', function() {
         var tslint = "./Build/node_modules/tslint/lib/tslint-cli";
 
         switch(os.platform()) {
-            case "win32":
-                node = "Build/Windows/node/node.exe";
+            case "win32":                
+                node = "Build\\Windows\\node\\node.exe";
                 break;
             case "darwin":
                 node = "Build/Mac/node/node";