Github user vladimir-kotikov commented on a diff in the pull request:

    https://github.com/apache/cordova-lib/pull/313#discussion_r41121974
  
    --- Diff: cordova-lib/src/plugman/uninstall.js ---
    @@ -256,6 +266,15 @@ function runUninstallPlatform(actions, platform, 
project_dir, plugin_dir, plugin
             promise = promiseutil.Q_chainmap(danglers, function(dangler) {
                 var dependent_path = path.join(plugins_dir, dangler);
     
    +            //try to convert ID if old-id path doesn't exist. 
    +            if (!fs.existsSync(dependent_path)) {
    +                var splitVersion = dangler.split('@');
    +                var newId = pluginMapper[splitVersion[0]];
    +                if(newId) {
    +                    dependent_path = path.join(plugins_dir, newId);
    --- End diff --
    
    Same here.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to