Closed
Description
To reproduce:
$ rebar3 new release missing
Edit apps/missing/src/missing.app.src to have a empty applications list:
{application, 'missing',
[{description, "An OTP application"},
{vsn, "0.1.0"},
{registered, []},
{mod, {'missing_app', []}},
{applications,
[]},
{env,[]},
{modules, []},
{contributors, []},
{licenses, []},
{links, []}
]}.
Run
$ rebar3 release
Then _build/default/rel/missing/lib
contains nothing.