Skip to content

Commit

Permalink
output stderror instead of stdout to show detailed errors when spawnC…
Browse files Browse the repository at this point in the history
…asperJS fails
  • Loading branch information
Rovak committed Jun 12, 2015
1 parent 464c16f commit d23b677
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Gruntfile.js
Expand Up @@ -506,7 +506,7 @@ var _ = require('lodash'),
}, function (error, result, code) {
/*jshint unused:false*/
if (error) {
grunt.fail.fatal(result.stdout);
grunt.fail.fatal(result.stderr);
}
grunt.log.writeln(result.stdout);
done();
Expand Down

0 comments on commit d23b677

Please sign in to comment.