-
I just want to bring up a shell with the code path(s) setup correct. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
you may want to instead use |
Beta Was this translation helpful? Give feedback.
-
Ahh...very nice. Exactly what I needed thanks! Btw: Sometimes I want to compile with some Erlang macros set, but |
Beta Was this translation helpful? Give feedback.
you may want to instead use
rebar3 path
to give all directory paths and call it with something likeerl -pa $(rebar3 path)
. Therebar3 shell
command always compiles its dependencies, but thepath
one picks up whatever is currently set up in the project and returns the list without compiling anything.