소스 검색

Use "node" as binary instead of "nodejs".

"nodejs" does not exist on Travis, it appears.
Josh Haberman 9 년 전
부모
커밋
59ea5000bb
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      js/gulpfile.js

+ 1 - 1
js/gulpfile.js

@@ -45,7 +45,7 @@ gulp.task('make_commonjs_out', ['dist', 'genproto_commonjs', 'commonjs_asserts']
   // Will require proper externs/exports.
   var cmd = "mkdir -p commonjs_out/binary && ";
   function addTestFile(file) {
-    cmd += 'nodejs commonjs/rewrite_tests_for_commonjs.js < ' + file +
+    cmd += 'node commonjs/rewrite_tests_for_commonjs.js < ' + file +
            ' > commonjs_out/' + file + '&& ';
   }