From 2da0ee6cbbaac000ef6d80dd307c9e115a2d42ba Mon Sep 17 00:00:00 2001 From: Nicklas Ansman Giertz Date: Sun, 20 Oct 2013 15:35:50 -0700 Subject: [PATCH] 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. --- tasks/watch.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/watch.js b/tasks/watch.js index 7aa5b8b..bb73683 100644 --- a/tasks/watch.js +++ b/tasks/watch.js @@ -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});