aboutsummaryrefslogtreecommitdiff
path: root/js/gulpfile.js
diff options
context:
space:
mode:
authorJosh Haberman <jhaberman@gmail.com>2016-02-05 15:07:15 -0800
committerJosh Haberman <jhaberman@gmail.com>2016-02-18 10:30:21 -0800
commit59ea5000bb07f09635229752361004ffe30dc85f (patch)
tree7706e3272fa00a6ae1424aab87a2d94b23c7ae35 /js/gulpfile.js
parent35298f97793d2b875a349db852b17ba979cf5e13 (diff)
downloadprotobuf-59ea5000bb07f09635229752361004ffe30dc85f.tar.gz
protobuf-59ea5000bb07f09635229752361004ffe30dc85f.tar.bz2
protobuf-59ea5000bb07f09635229752361004ffe30dc85f.zip
Use "node" as binary instead of "nodejs".
"nodejs" does not exist on Travis, it appears.
Diffstat (limited to 'js/gulpfile.js')
-rw-r--r--js/gulpfile.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/gulpfile.js b/js/gulpfile.js
index d8f8ef4a..88bb0022 100644
--- a/js/gulpfile.js
+++ b/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 + '&& ';
}