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:
parent
7817d405a0
commit
2da0ee6cbb
@ -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});
|
||||||
|
Loading…
Reference in New Issue
Block a user