瀏覽代碼

Merge pull request #2015 from ankhers/include_version_in_plugin_list

Include version in plugin list
pull/2018/head
Fred Hebert 6 年之前
committed by GitHub
父節點
當前提交
07f5e3d2d2
沒有發現已知的金鑰在資料庫的簽署中 GPG 金鑰 ID: 4AEE18F83AFDEB23
共有 2 個檔案被更改,包括 3 行新增2 行删除
  1. +1
    -0
      THANKS
  2. +2
    -2
      src/rebar_prv_plugins.erl

+ 1
- 0
THANKS 查看文件

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

+ 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

Loading…
取消
儲存