소스 검색

upupdate node module building code to support new location of utils/build scripts.

Ben Houston 12 년 전
부모
커밋
96d2ab75ff
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      utils/npm/build.js

+ 1 - 1
utils/npm/build.js

@@ -87,7 +87,7 @@ var buildModule = function ( name, version ) {
 // TODO: make this non-Windows specific.
 var cmdExe = "cmd.exe";
 var args = [ "/c", "build_all.bat" ];
-var opts = { "cwd": ".." };
+var opts = { "cwd": "../build" };
 var buildAll = cp.spawn( cmdExe, args, opts );
 
 buildAll.stdout.on('data', function (data) {