Explorar el Código

Merge pull request #1234 from talentdeficit/shell_config

ignore return value of `rebar_utils:reread_config` in shell provider
pull/1236/head
Fred Hebert hace 9 años
cometido por GitHub
padre
commit
ac69558087
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. +2
    -1
      src/rebar_prv_shell.erl

+ 2
- 1
src/rebar_prv_shell.erl Ver fichero

@ -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) ->

Cargando…
Cancelar
Guardar