Browse Source

Return child from execFile

v0.7.4-release
Ryan Dahl 15 years ago
parent
commit
d700a6f74a
  1. 2
      lib/child_process.js

2
lib/child_process.js

@ -82,6 +82,8 @@ exports.execFile = function (file, args /*, options, callback */) {
if (callback) callback(e, stdout, stderr); if (callback) callback(e, stdout, stderr);
} }
}); });
return child;
}; };

Loading…
Cancel
Save