diff --git a/bin/doxmate b/bin/doxmate index 938f1f3..ddbaca4 100755 --- a/bin/doxmate +++ b/bin/doxmate @@ -61,10 +61,17 @@ if (fs.existsSync(local)) { // execute command var options = {maxBuffer: 1024 * 1024}; -execFile(local, args, options, function (err, stdout) { - if (err) { +execFile("node", [local], function (err, stdout) { + if (err) { console.error(err); return; - } - console.log(stdout); + } + console.log(stdout); }); +// execFile(local, args, options, function (err, stdout) { +// if (err) { +// console.error(err); +// return; +// } +// console.log(stdout); +// });