You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This came up recently in regards to better support for organization on hex.pm. I think what you have is what I was thinking about as a simple solution for private package A depending on private package B and so on and so forth.
I haven't had time to do a PR for this and what's more give it a a lot of testing. Would you like to open a PR?
I'm not sure if this will work when both deps are fetched via rebar, but if it solves at least one problem that at least a step in the right direction.
I have an erlang module A published on a private repository my_repo
This module A depends of module B from hexpm repository
When I perform mix deps.get
it retrieves my_repo/A and try tro retrieve B from my_repo instead of hexpm
The generated metadata.config
As the field
{<<"repository">>,<<"hexpm">>},
is missing mix try to retrieve B from my_repo instead of hexpm.Is it possible to add this field ?
The text was updated successfully, but these errors were encountered: