From: Ryan Dahl Date: Mon, 12 Jul 2010 21:18:09 +0000 (-0700) Subject: Return child from execFile X-Git-Tag: v0.1.101~47 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d700a6f74ad7b32b1f9106634ac6b13b4ae4244a;p=platform%2Fupstream%2Fnodejs.git Return child from execFile --- diff --git a/lib/child_process.js b/lib/child_process.js index 849f878..b881150 100644 --- a/lib/child_process.js +++ b/lib/child_process.js @@ -82,6 +82,8 @@ exports.execFile = function (file, args /*, options, callback */) { if (callback) callback(e, stdout, stderr); } }); + + return child; };