Sfoglia il codice sorgente

Merge pull request #1234 from talentdeficit/shell_config

ignore return value of `rebar_utils:reread_config` in shell provider
pull/1236/head
Fred Hebert 9 anni fa
committed by GitHub
parent
commit
ac69558087
1 ha cambiato i file con 2 aggiunte e 1 eliminazioni
  1. +2
    -1
      src/rebar_prv_shell.erl

+ 2
- 1
src/rebar_prv_shell.erl Vedi 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) ->

Caricamento…
Annulla
Salva