From 8d213d0cb02e214cd69e55954583a4e82c8dc4fe Mon Sep 17 00:00:00 2001 From: ekatek Date: Mon, 8 Dec 2014 18:34:38 -0800 Subject: [PATCH] fix some newline breaks --- tools/commands-cordova.js | 18 ++++++------------ tools/run-all.js | 10 ++++------ 2 files changed, 10 insertions(+), 18 deletions(-) diff --git a/tools/commands-cordova.js b/tools/commands-cordova.js index 9f24df5302..d91ccfebf2 100644 --- a/tools/commands-cordova.js +++ b/tools/commands-cordova.js @@ -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(); } diff --git a/tools/run-all.js b/tools/run-all.js index 479ebe0494..340a49fdc1 100644 --- a/tools/run-all.js +++ b/tools/run-all.js @@ -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; }