recon icon indicating copy to clipboard operation
recon copied to clipboard

app_deps.erl enhancements

Open Zabrane opened this issue 3 years ago • 2 comments

@ferd would it be possible to add ebin directories under _checkouts to script/app_deps.erl?

main(_) ->
    AppFiles = filelib:wildcard("deps/*/ebin/*.app")
               ++
               filelib:wildcard("apps/*/ebin/*.app")
               ++
               filelib:wildcard("ebin/*.app")
               ++
               filelib:wildcard("_build/default/lib/*/ebin/*.app")
               ++
               filelib:wildcard("_checkouts/*/ebin/*.app"), %% _checkouts
    to_graphviz(read_deps(AppFiles)).

Zabrane avatar Apr 06 '22 07:04 Zabrane

It may actually make more sense given newer rebar3 releases to go for _build/default/checkouts/*/ebin/*.app to use that path rather than directly in the checkouts directory I think?

ferd avatar Apr 06 '22 17:04 ferd

@ferd works for me

Zabrane avatar Apr 07 '22 08:04 Zabrane