Return child from execFile

This commit is contained in:
Ryan Dahl 2010-07-12 14:18:09 -07:00
parent 7a706e4206
commit d700a6f74a

View File

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