fix some newline breaks

This commit is contained in:
ekatek
2014-12-08 18:34:38 -08:00
parent 42b0d9247d
commit 8d213d0cb0
2 changed files with 10 additions and 18 deletions

View File

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

View File

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