Adding Cordova plugin from private registry fails #7336
Closed
Comments
hwillson
added a commit
to hwillson/meteor
that referenced
this issue
Nov 9, 2017
Fixes an issue preventing the installation of scoped Cordova packages. For example, `meteor add cordova:@somescope/some-cordova-plugin@1.0.0` will now work properly. Fixes meteor#7336.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This issue appears to be due to line 1911 of meteor/tools/cli/commands-packages.js
let [id, version] = target.split('@');
I would expect this to remove the first element in the array and append @ to the first if three exist.
Meteor 1.3.3
Can be reproduced using the above meteor add.
The text was updated successfully, but these errors were encountered: