From 7f2df72de2ef7ea184e2765800d9741db41a4369 Mon Sep 17 00:00:00 2001 From: Emily Stark Date: Tue, 21 Oct 2014 17:51:16 -0700 Subject: [PATCH] Line-wrap a 'meteor update' message --- tools/commands-packages.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/commands-packages.js b/tools/commands-packages.js index cada0f6a2f..7014ff9324 100644 --- a/tools/commands-packages.js +++ b/tools/commands-packages.js @@ -1763,8 +1763,8 @@ var maybeUpdateRelease = function (options) { // that track, so we are done. var releaseToPrint = utils.displayRelease(appTrack, appVersion); Console.info( - "This project is already at " + releaseToPrint + - ", which is newer than the latest release."); +"This project is already at " + releaseToPrint + ", which is newer\n" + +"than the latest release."); return 0; } }