diff options
author | patrick cieplak <patrick.cieplak@gmail.com> | 2017-08-17 21:39:53 -0700 |
---|---|---|
committer | patrick cieplak <patrick.cieplak@gmail.com> | 2017-08-17 21:39:53 -0700 |
commit | 9a76737d91177961cc3df917bea7d69df263d7cb (patch) | |
tree | e4192d931118789622a0b97b6b28456472910495 | |
parent | 1c5052fb4112e567ffe73af19b8a1f6d80655b28 (diff) |
fix `rebar3 shell` when relx section of rebar.config contains releases with independent configurations
-rw-r--r-- | src/rebar_prv_shell.erl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/rebar_prv_shell.erl b/src/rebar_prv_shell.erl index c958dde..0244833 100644 --- a/src/rebar_prv_shell.erl +++ b/src/rebar_prv_shell.erl @@ -322,6 +322,9 @@ find_apps_relx(State) -> {_, _, Apps} -> ?DEBUG("Found shell apps from relx.", []), Apps; + {_, _, Apps, _} -> + ?DEBUG("Found shell apps from relx.", []), + Apps; false -> no_value end. |