Browse Source

Merge pull request #1614 from cieplak/master

fix `rebar3 shell` when relx section of rebar.config contains release…
pull/1619/head
Fred Hebert 7 years ago
committed by GitHub
parent
commit
47a2cc50df
1 changed files with 3 additions and 0 deletions
  1. +3
    -0
      src/rebar_prv_shell.erl

+ 3
- 0
src/rebar_prv_shell.erl View File

@ -322,6 +322,9 @@ find_apps_relx(State) ->
{_, _, Apps} -> {_, _, Apps} ->
?DEBUG("Found shell apps from relx.", []), ?DEBUG("Found shell apps from relx.", []),
Apps; Apps;
{_, _, Apps, _} ->
?DEBUG("Found shell apps from relx.", []),
Apps;
false -> false ->
no_value no_value
end. end.

Loading…
Cancel
Save