Supersonido / rebar_mix

rebar3 plugin for building Elixir dependencies with mix
Apache License 2.0
53 stars 20 forks source link

Won't work with ` rebar3_path_deps` #34

Open fazibears opened 11 months ago

fazibears commented 11 months ago

Hey. Long story short trying to add elixir to erlang project. I’m trying add local elixir dependency to project. It kindly works. Problem is that every second run elixir part is not included.

Steps to reproduce:

$ rebar3 new app local_mix
$ cd local_mix
$ mix new ex_app

rebar.config:

{deps, [
    {ex_app, {path, "./ex_app"}}
  ]
}.

{shell, [
  % {config, "config/sys.config"},
    {apps, [local_mix]}
]}.

{plugins, [
    rebar3_path_deps,
    rebar_mix
]}.

if you run rebar3 shell once again it will work :slight_smile:

Maybe there is other way to just include elixir files in rebar3 project?

tsloughter commented 8 months ago

That might be an issue with rebar3_path_deps and not this plugin.

Curious if you've tried using _checkouts and if that works.