Commit 59ea5000 authored by Josh Haberman's avatar Josh Haberman

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

"nodejs" does not exist on Travis, it appears.
parent 35298f97
...@@ -45,7 +45,7 @@ gulp.task('make_commonjs_out', ['dist', 'genproto_commonjs', 'commonjs_asserts'] ...@@ -45,7 +45,7 @@ gulp.task('make_commonjs_out', ['dist', 'genproto_commonjs', 'commonjs_asserts']
// Will require proper externs/exports. // Will require proper externs/exports.
var cmd = "mkdir -p commonjs_out/binary && "; var cmd = "mkdir -p commonjs_out/binary && ";
function addTestFile(file) { function addTestFile(file) {
cmd += 'nodejs commonjs/rewrite_tests_for_commonjs.js < ' + file + cmd += 'node commonjs/rewrite_tests_for_commonjs.js < ' + file +
' > commonjs_out/' + file + '&& '; ' > commonjs_out/' + file + '&& ';
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment