Browse Source

ignore return value of `rebar_utils:reread_config` in shell provider

pull/1234/head
alisdair sullivan 9 years ago
parent
commit
74cc922fb4
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      src/rebar_prv_shell.erl

+ 2
- 1
src/rebar_prv_shell.erl View File

@ -332,7 +332,8 @@ reread_config(State) ->
no_config ->
ok;
ConfigList ->
rebar_utils:reread_config(ConfigList)
_ = rebar_utils:reread_config(ConfigList),
ok
end.
boot_apps(Apps) ->

Loading…
Cancel
Save