Fix error message for add-platform

This commit is contained in:
Matthew Arbesfeld
2014-08-20 00:43:59 -07:00
parent 0f9239b605
commit 1b96d8a8c3

View File

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