Ver código fonte

Merge pull request #2015 from ankhers/include_version_in_plugin_list

Include version in plugin list
pull/2018/head
Fred Hebert 6 anos atrás
committed by GitHub
pai
commit
07f5e3d2d2
Nenhuma chave conhecida encontrada para esta assinatura no banco de dados ID da chave GPG: 4AEE18F83AFDEB23
2 arquivos alterados com 3 adições e 2 exclusões
  1. +1
    -0
      THANKS
  2. +2
    -2
      src/rebar_prv_plugins.erl

+ 1
- 0
THANKS Ver arquivo

@ -142,3 +142,4 @@ Andrew McRobb
Drew Varner
Niklas Johansson
Bryan Paxton
Justin Wood

+ 2
- 2
src/rebar_prv_plugins.erl Ver arquivo

@ -66,8 +66,8 @@ display_plugins(Apps, Plugins) ->
is_tuple(Plugin) -> rebar_utils:to_binary(element(1, Plugin))
end,
case rebar_app_utils:find(Name, Apps) of
{ok, _App} ->
?CONSOLE("~ts", [Name]);
{ok, App} ->
?CONSOLE("~ts (~s)", [Name, rebar_app_info:original_vsn(App)]);
error ->
?DEBUG("Unable to find plugin ~ts", [Name])
end

Carregando…
Cancelar
Salvar