Skip to content

Commit f9f695c

Browse files
committed
Making app_deps.erl script support releases
Assuming releases have an apps/ + deps/ structure. apps/ is optional, of course.
1 parent 9c356fc commit f9f695c

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ Documentation for the library can be obtained at http://ferd.github.io/recon/
1212
Changelog
1313
---------
1414

15+
- 0.4.2 (WIP): extended `app_deps.erl` to read apps/ directories for releases
1516
- 0.4.1: fixed bug where nodes with lots of processes could see the GC call
1617
fail if said processes failed between long calls within the `bin_leak`
1718
function call.

script/app_deps.erl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212

1313
main(_) ->
1414
AppFiles = filelib:wildcard("deps/*/ebin/*.app")
15+
++
16+
filelib:wildcard("apps/*/ebin/*.app")
1517
++
1618
filelib:wildcard("ebin/*.app"),
1719
to_graphviz(read_deps(AppFiles)).

0 commit comments

Comments
 (0)