Explorar el Código

Merge pull request #640 from pvmart/master

Fix plugin upgrade when plugin mentioned only by its name
pull/651/head
Tristan Sloughter hace 9 años
padre
commit
5cbc22c45d
Se han modificado 1 ficheros con 4 adiciones y 1 borrados
  1. +4
    -1
      src/rebar_prv_plugins_upgrade.erl

+ 4
- 1
src/rebar_prv_plugins_upgrade.erl Ver fichero

@ -97,7 +97,10 @@ find(Plugin, [Plugin1 | Plugins]) when is_tuple(Plugin1) ->
Plugin1;
false ->
find(Plugin, Plugins)
end.
end;
find(Plugin, [_Plugin | Plugins]) ->
find(Plugin, Plugins).
build_plugin(AppInfo, Apps, State) ->
Providers = rebar_state:providers(State),

Cargando…
Cancelar
Guardar