mirror of
https://github.com/jashkenas/coffeescript.git
synced 2026-05-03 03:00:14 -04:00
no newline on no_such_task for Cake
This commit is contained in:
@@ -100,7 +100,7 @@
|
||||
};
|
||||
// Print an error and exit when attempting to all an undefined task.
|
||||
no_such_task = function no_such_task(task) {
|
||||
puts(("No such task: \"" + task + "\"\n"));
|
||||
puts(("No such task: \"" + task + "\""));
|
||||
return process.exit(1);
|
||||
};
|
||||
})();
|
||||
|
||||
@@ -66,5 +66,5 @@ print_tasks: ->
|
||||
|
||||
# Print an error and exit when attempting to all an undefined task.
|
||||
no_such_task: (task) ->
|
||||
puts "No such task: \"$task\"\n"
|
||||
puts "No such task: \"$task\""
|
||||
process.exit 1
|
||||
|
||||
Reference in New Issue
Block a user