Fix #205 (erlydtl:compile/3 returns warnings)

Adapt rebar_erlydtl_compiler to handle warnings emitted by
erlydtl:compile/3.
This commit is contained in:
Tuncer Ayaz 2014-01-11 20:26:10 +01:00
parent df42410cf2
commit 03e7993402

View file

@ -210,6 +210,8 @@ do_compile(Config, Source, Target, DtlOpts) ->
Opts) of Opts) of
ok -> ok ->
ok; ok;
{ok, _Mod, _Bin, Ws} ->
rebar_base_compiler:ok_tuple(Config, Source, Ws);
error -> error ->
rebar_base_compiler:error_tuple(Config, Source, [], [], Opts); rebar_base_compiler:error_tuple(Config, Source, [], [], Opts);
{error, {_File, _Msgs} = Error} -> {error, {_File, _Msgs} = Error} ->