瀏覽代碼

Merge pull request #210 from tuncer/erlydtl-warnings

Fix #205 (erlydtl:compile/3 returns warnings)
pull/3/head
Jared Morrow 11 年之前
父節點
當前提交
477fbabfa8
共有 1 個檔案被更改,包括 4 行新增0 行删除
  1. +4
    -0
      src/rebar_erlydtl_compiler.erl

+ 4
- 0
src/rebar_erlydtl_compiler.erl 查看文件

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

Loading…
取消
儲存