mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Line-wrap springboarding failure messages
This commit is contained in:
@@ -380,13 +380,13 @@ var springboard = function (rel, options) {
|
||||
// to! That's bad. Let's exit.
|
||||
if (options.fromApp) {
|
||||
Console.error(
|
||||
"Sorry, this project uses " + rel.getDisplayName() + ", which is not "
|
||||
+ "installed and could not be downloaded. Please check to make sure "
|
||||
+ "that you are online.");
|
||||
"Sorry, this project uses " + rel.getDisplayName() + ", which is not\n" +
|
||||
"installed and could not be downloaded. Please check to make sure that you\n" +
|
||||
"are online.");
|
||||
} else {
|
||||
Console.error(
|
||||
"Sorry, " + rel.getDisplayName() + " is not installed and could not be "
|
||||
+ "downloaded. Please check to make sure that you are online.");
|
||||
"Sorry, " + rel.getDisplayName() + " is not installed and could not be\n" +
|
||||
"downloaded. Please check to make sure that you are online.");
|
||||
}
|
||||
process.exit(1);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user