Skip to content
This repository has been archived by the owner on May 12, 2018. It is now read-only.

Commit

Permalink
Use proplists:unfold to make sure we feed a proplist to keymerge.
Browse files Browse the repository at this point in the history
  • Loading branch information
davidw authored and kaos committed Feb 14, 2014
1 parent 3311026 commit f7d62de
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions src/rebar_erlydtl_compiler.erl
Original file line number Diff line number Diff line change
Expand Up @@ -199,16 +199,17 @@ do_compile(Config, Source, Target, DtlOpts) ->
%% versions of erlydtl.
CompilerOptions = option(compiler_options, DtlOpts),

Sorted = proplists:unfold(
lists:sort(
[{out_dir, option(out_dir, DtlOpts)},
{doc_root, option(doc_root, DtlOpts)},
{custom_tags_dir, option(custom_tags_dir, DtlOpts)},
{compiler_options, CompilerOptions}
|CompilerOptions])),

%% ensure that doc_root and out_dir are defined,
%% using defaults if necessary
Opts = lists:ukeymerge(1,
DtlOpts,
lists:sort(
[{out_dir, option(out_dir, DtlOpts)},
{doc_root, option(doc_root, DtlOpts)},
{custom_tags_dir, option(custom_tags_dir, DtlOpts)},
{compiler_options, CompilerOptions}
|CompilerOptions])),
Opts = lists:ukeymerge(1, DtlOpts, Sorted),
?INFO("Compiling \"~s\" -> \"~s\" with options:~n ~s~n",
[Source, Target, io_lib:format("~p", [Opts])]),
case erlydtl:compile(Source,
Expand Down

0 comments on commit f7d62de

Please sign in to comment.