summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFred Hebert <mononcqc@ferd.ca>2017-08-18 12:44:22 -0400
committerGitHub <noreply@github.com>2017-08-18 12:44:22 -0400
commit47a2cc50df09d7d4a5c00f29c39f7a2dfde609c7 (patch)
treee4192d931118789622a0b97b6b28456472910495
parent1c5052fb4112e567ffe73af19b8a1f6d80655b28 (diff)
parent9a76737d91177961cc3df917bea7d69df263d7cb (diff)
Merge pull request #1614 from cieplak/master
fix `rebar3 shell` when relx section of rebar.config contains releaseā€¦
-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.