Explorar el Código

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

pull/1234/head
alisdair sullivan hace 9 años
padre
commit
74cc922fb4
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