Return child from execFile

pull/22966/head
Ryan Dahl 2010-07-12 14:18:09 -07:00
parent 7a706e4206
commit d700a6f74a
1 changed files with 2 additions and 0 deletions

View File

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