> > Thank you, José! I put together a repro here: > > https://github.com/josevalim/umbrella_sample/pull/5 >
Thank you, I have found and fixed it. All dependencies run in a particular environment, which defaults to production. The conflict you were getting was not because of the path but because the dependencies were configured to run in different environments. In order to make it easier to catch such errors, we will also print the :env value when printing dependencies. However, it was not really different environments, one had env: :prod and another one had no :env, so when they compared the failed but they should not, because the default :env *is* prod. So I have made sure we set the default env to prod as well, effectively solving the error. See commit: https://github.com/elixir-lang/elixir/commit/eced1303efd2622f5080949290bdd9dc9b92c893 -- You received this message because you are subscribed to the Google Groups "elixir-lang-core" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/elixir-lang-core/CAGnRm4%2BkknrbwVBniMi87E%2BWXrnsHy-9MdrWq0vb5heN1Gh%2BJQ%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
