We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c356fc commit f9f695cCopy full SHA for f9f695c
README.md
@@ -12,6 +12,7 @@ Documentation for the library can be obtained at http://ferd.github.io/recon/
12
Changelog
13
---------
14
15
+- 0.4.2 (WIP): extended `app_deps.erl` to read apps/ directories for releases
16
- 0.4.1: fixed bug where nodes with lots of processes could see the GC call
17
fail if said processes failed between long calls within the `bin_leak`
18
function call.
script/app_deps.erl
@@ -12,6 +12,8 @@
main(_) ->
AppFiles = filelib:wildcard("deps/*/ebin/*.app")
+ ++
+ filelib:wildcard("apps/*/ebin/*.app")
++
filelib:wildcard("ebin/*.app"),
19
to_graphviz(read_deps(AppFiles)).
0 commit comments