From 78aa38ed8f34a48d1b6354d32488a03196e02e1c Mon Sep 17 00:00:00 2001 From: Kaiwen Xu Date: Mon, 25 Feb 2013 12:14:13 -0500 Subject: [PATCH 1/2] Fixed meteor update notice. Makes the notice easier to understand when the meteor installation is a git checkout. --- app/meteor/update.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/meteor/update.js b/app/meteor/update.js index f2dffb7e8f..9218746d6d 100644 --- a/app/meteor/update.js +++ b/app/meteor/update.js @@ -14,7 +14,7 @@ var _ = require('underscore'); // refuse to update if we're in a git checkout. if (files.in_checkout()) { - console.log("This is a git checkout. Update it manually with 'git pull'."); + console.log("Your meteor installation is a git checkout. Update it manually with 'git pull'."); process.exit(1); } From ff381e925f1585318fb22f8a156035e2a48e26f3 Mon Sep 17 00:00:00 2001 From: David Glasser Date: Wed, 27 Feb 2013 15:40:37 -0800 Subject: [PATCH 2/2] Capitalize Meteor, flow. --- app/meteor/update.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/meteor/update.js b/app/meteor/update.js index 9218746d6d..7f6a17ec07 100644 --- a/app/meteor/update.js +++ b/app/meteor/update.js @@ -14,7 +14,8 @@ var _ = require('underscore'); // refuse to update if we're in a git checkout. if (files.in_checkout()) { - console.log("Your meteor installation is a git checkout. Update it manually with 'git pull'."); + console.log("Your Meteor installation is a git checkout. Update it " + + "manually with 'git pull'."); process.exit(1); }