no newline on no_such_task for Cake

This commit is contained in:
Jeremy Ashkenas 2010-04-27 07:59:19 -04:00
parent b5606a247d
commit 92af641827
2 changed files with 2 additions and 2 deletions

View File

@ -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);
};
})();

View File

@ -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