You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by st...@apache.org on 2015/03/06 01:26:54 UTC

[18/27] cordova-lib git commit: CB-8551 updated warning message about using new plugin names

CB-8551 updated warning message about using new plugin names


Project: http://git-wip-us.apache.org/repos/asf/cordova-lib/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-lib/commit/d9d956b2
Tree: http://git-wip-us.apache.org/repos/asf/cordova-lib/tree/d9d956b2
Diff: http://git-wip-us.apache.org/repos/asf/cordova-lib/diff/d9d956b2

Branch: refs/heads/master
Commit: d9d956b29768e6c8828bfe7c7dcfdae6bf0557be
Parents: 305cecb
Author: Steve Gill <st...@gmail.com>
Authored: Tue Mar 3 16:43:05 2015 -0800
Committer: Steve Gill <st...@gmail.com>
Committed: Tue Mar 3 16:43:05 2015 -0800

----------------------------------------------------------------------
 cordova-lib/src/plugman/registry/registry.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-lib/blob/d9d956b2/cordova-lib/src/plugman/registry/registry.js
----------------------------------------------------------------------
diff --git a/cordova-lib/src/plugman/registry/registry.js b/cordova-lib/src/plugman/registry/registry.js
index fba5053..ed0e221 100644
--- a/cordova-lib/src/plugman/registry/registry.js
+++ b/cordova-lib/src/plugman/registry/registry.js
@@ -421,8 +421,8 @@ function checkPluginID(plugin) {
         var packageName = pluginMapper[pluginID[0]];
         if(packageName) {
             events.emit('log', 'WARNING: ' + plugin + ' has been renamed to ' + 
-                    packageName + ' and moved to npm. Please use `cordova plugin add ' + 
-                    packageName + '` next time.');
+                    packageName + '. You may not be getting the latest version! We suggest you `cordova plugin rm ' + 
+                    plugin + '` and `cordova plugin add ' + packageName + '`.');
         }
     }
     return Q(); 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org