Skip to content
This repository has been archived by the owner on Mar 22, 2024. It is now read-only.

Commit

Permalink
Always log stdout & stderr
Browse files Browse the repository at this point in the history
  • Loading branch information
matthew-andrews committed Mar 18, 2015
1 parent fe36831 commit d1b92f5
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions tasks/nightwatch.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,8 @@

var denodeify = require('denodeify');
var exec = denodeify(require('child_process').exec, function(err, stdout, stderr) {
if (err) {
console.log(stdout);
console.log(stderr);
}
console.log(stdout);
console.log(stderr);
return [err];
});
var path = require('path');
Expand Down

0 comments on commit d1b92f5

Please sign in to comment.