浏览代码

Do not warn if pre_/post_ cmd is not available

pull/3/head
Tuncer Ayaz 14 年前
父节点
当前提交
1ec92ebac3
共有 1 个文件被更改,包括 9 次插入2 次删除
  1. +9
    -2
      src/rebar_core.erl

+ 9
- 2
src/rebar_core.erl 查看文件

@ -241,8 +241,15 @@ execute_plugin_hook(Hook, Command, Modules, Config, ModuleFile) ->
execute(Command, Modules, Config, ModuleFile) -> execute(Command, Modules, Config, ModuleFile) ->
case select_modules(Modules, Command, []) of case select_modules(Modules, Command, []) of
[] -> [] ->
?WARN("'~p' command does not apply to directory ~s\n",
[Command, rebar_utils:get_cwd()]);
Cmd = atom_to_list(Command),
case lists:prefix("pre_", Cmd)
orelse lists:prefix("post_", Cmd) of
true ->
ok;
false ->
?WARN("'~p' command does not apply to directory ~s\n",
[Command, rebar_utils:get_cwd()])
end;
TargetModules -> TargetModules ->
%% Provide some info on where we are %% Provide some info on where we are

正在加载...
取消
保存