瀏覽代碼

Simplify check for empty list

pull/3/head
Tuncer Ayaz 13 年之前
父節點
當前提交
4fe651cb5b
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      src/rebar_core.erl

+ 1
- 1
src/rebar_core.erl 查看文件

@ -389,7 +389,7 @@ plugin_modules(_Config, FoundModules, []) ->
plugin_modules(Config, FoundModules, MissingModules) ->
{Loaded, NotLoaded} = load_plugin_modules(Config, MissingModules),
AllViablePlugins = FoundModules ++ Loaded,
case length(NotLoaded) > 0 of
case NotLoaded =/= [] of
true ->
%% NB: we continue to ignore this situation, as did the original code
?WARN("Missing plugins: ~p\n", NotLoaded);

Loading…
取消
儲存