mirror of
https://github.com/correl/rebar.git
synced 2024-12-18 03:00:17 +00:00
Do not warn if pre_/post_ cmd is not available
This commit is contained in:
parent
0f08e768a7
commit
1ec92ebac3
1 changed files with 9 additions and 2 deletions
|
@ -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",
|
Cmd = atom_to_list(Command),
|
||||||
[Command, rebar_utils:get_cwd()]);
|
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
|
||||||
|
|
Loading…
Reference in a new issue