浏览代码

Add plugin version to the output of rebar3 plugin list

pull/2015/head
Justin Wood 6 年前
父节点
当前提交
8a4bfa3ac5
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. +2
    -2
      src/rebar_prv_plugins.erl

+ 2
- 2
src/rebar_prv_plugins.erl 查看文件

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

正在加载...
取消
保存