From 1b96d8a8c3f3fa28a42cd71cf8a4f370943e645f Mon Sep 17 00:00:00 2001 From: Matthew Arbesfeld Date: Wed, 20 Aug 2014 00:43:59 -0700 Subject: [PATCH] Fix error message for add-platform --- tools/commands-cordova.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/commands-cordova.js b/tools/commands-cordova.js index 29cf3c0ccb..854ccb20c2 100644 --- a/tools/commands-cordova.js +++ b/tools/commands-cordova.js @@ -497,7 +497,7 @@ var checkRequestedPlatforms = function (platforms) { if (! _.contains(cordovaPlatforms, platform)) throw new Error(platform + ": platform is not added to the project. Try 'meteor add-platform " + - platform + "' to add it or 'meteor help add' for help."); + platform + "' to add it or 'meteor help add-platform' for help."); }); };