Print a newline after the initial Waiting...

Things like foreman doesn't work very well when a line without a newline
is printed, it blocks the output from all other processes so that the
lines may come in order.
This commit is contained in:
Nicklas Ansman Giertz 2013-10-20 15:35:50 -07:00
parent 7817d405a0
commit 2da0ee6cbb

View File

@ -78,7 +78,7 @@ module.exports = function(grunt) {
dateFormat = df; dateFormat = df;
} }
if (taskrun.running === false) { grunt.log.write(waiting); } if (taskrun.running === false) { grunt.log.writeln(waiting); }
// initialize taskrun // initialize taskrun
var targets = taskrun.init(name, {target: target}); var targets = taskrun.init(name, {target: target});