diff --git a/src/rebar.erl b/src/rebar.erl index 82e3fac..c7c9d29 100644 --- a/src/rebar.erl +++ b/src/rebar.erl @@ -69,7 +69,7 @@ main(Args) -> %% Erlang-API entry point run(BaseConfig, Commands) -> - application:load(rebar), + _ = application:load(rebar), run_aux(BaseConfig, Commands). %% ==================================================================== diff --git a/src/rebar_erlydtl_compiler.erl b/src/rebar_erlydtl_compiler.erl index 25981b2..b5fe899 100644 --- a/src/rebar_erlydtl_compiler.erl +++ b/src/rebar_erlydtl_compiler.erl @@ -133,7 +133,7 @@ erlydtl_opts(Config) -> Tuples = [{K,V} || {K,V} <- Opts], case [L || L <- Opts, is_list(L), not io_lib:printable_list(L)] of [] -> - lists:keysort(1, [Tuples]); + lists:keysort(1, Tuples); Lists -> lists:map(fun(L) -> lists:keysort(1, lists:foldl(fun({K,T}, Acc) ->