summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorpatrick cieplak <patrick.cieplak@gmail.com>2017-08-17 21:39:53 -0700
committerpatrick cieplak <patrick.cieplak@gmail.com>2017-08-17 21:39:53 -0700
commit9a76737d91177961cc3df917bea7d69df263d7cb (patch)
treee4192d931118789622a0b97b6b28456472910495 /src
parent1c5052fb4112e567ffe73af19b8a1f6d80655b28 (diff)
fix `rebar3 shell` when relx section of rebar.config contains releases with independent configurations
Diffstat (limited to 'src')
-rw-r--r--src/rebar_prv_shell.erl3
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.