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.
pull/225/head
Nicklas Ansman Giertz 11 years ago
parent 7817d405a0
commit 2da0ee6cbb

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

Loading…
Cancel
Save