瀏覽代碼

Fix regression in rebar_lfe_compiler

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

+ 3
- 2
src/rebar_lfe_compiler.erl 查看文件

@ -62,7 +62,7 @@ compile_lfe(Source, Target, Config) ->
?FAIL;
_ ->
Opts = [{i, "include"}, {outdir, "ebin"}, report, return] ++
rebar_config:get_list(Config, erl_opts, []),
rebar_config:get_list(Config, lfe_opts, []),
case lfe_comp:file(Source, Opts) of
{ok, _, []} ->
ok;
@ -74,6 +74,7 @@ compile_lfe(Source, Target, Config) ->
false ->
ok
end;
_ -> ?FAIL
_ ->
?FAIL
end
end.

Loading…
取消
儲存