mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
fix some newline breaks
This commit is contained in:
@@ -1081,24 +1081,18 @@ var execCordovaOnPlatform = function (projectContext, platformName, options) {
|
||||
Console.error();
|
||||
} else if (err && platform === "android") {
|
||||
Console.error();
|
||||
Console.error(
|
||||
chalk.green("Could not start the app in the Android emulator.\n"),
|
||||
chalk.green("Try running again with the --verbose option.")
|
||||
);
|
||||
Console.error(chalk.green("Could not start the app in the Android emulator."));
|
||||
Console.error(chalk.green("Try running again with the --verbose option."));
|
||||
Console.error();
|
||||
} else if (err && platform === "ios") {
|
||||
Console.error();
|
||||
Console.error(
|
||||
chalk.green("Could not start the app in the iOS simulator.\n"),
|
||||
chalk.green("Try running again with the --verbose option.")
|
||||
);
|
||||
Console.error(chalk.green("Could not start the app in the iOS simulator."));
|
||||
Console.error(chalk.green("Try running again with the --verbose option."));
|
||||
Console.error();
|
||||
} else if (err) {
|
||||
Console.error();
|
||||
Console.error(
|
||||
chalk.green("Could not start your app.\n"),
|
||||
chalk.green("Try running again with the --verbose option.")
|
||||
);
|
||||
Console.error(chalk.green("Could not start your app."));
|
||||
Console.error(chalk.green("Try running again with the --verbose option."));
|
||||
Console.error();
|
||||
}
|
||||
|
||||
|
||||
@@ -333,16 +333,14 @@ exports.run = function (options) {
|
||||
}
|
||||
|
||||
if (result.outcome === "outdated-cordova-plugins") {
|
||||
Console.error(
|
||||
"Your app's Cordova plugins have changed.\n",
|
||||
"Restart meteor to use the new set of plugins.");
|
||||
Console.error("Your app's Cordova plugins have changed.");
|
||||
Console.error("Restart meteor to use the new set of plugins.");
|
||||
return 254;
|
||||
}
|
||||
|
||||
if (result.outcome === "outdated-cordova-platforms") {
|
||||
Console.error(
|
||||
"Your app's platforms have changed.\n",
|
||||
"Restart meteor to use the new set of platforms.");
|
||||
Console.error("Your app's platforms have changed.");
|
||||
Console.error("Restart meteor to use the new set of platforms.");
|
||||
return 254;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user