Github user matrosov-nikita commented on a diff in the pull request:
https://github.com/apache/cordova-lib/pull/555#discussion_r120073277
--- Diff: cordova-fetch/index.js ---
@@ -148,9 +148,15 @@ function trimID(target) {
target = parts[1];
}
- //If local path exists, set target to final directory
+ // If local path exists, try to get plugin id from package.json or set
target to final directory
if (fs.existsSync(target)) {
- target = path.basename(target);
+ var pluginId, pkgJsonPath = path.join(target, 'package.json');
+
+ if (fs.existsSync(pkgJsonPath)) {
+ pluginId = JSON.parse(fs.readFileSync(pkgJsonPath)).cordova.id;
--- End diff --
@stevengill, I could not find plugins in which `cordova.id` differs from
the `name`. PR has been updated.
---
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]