aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/relx.app.src6
-rw-r--r--src/rlx_util.erl2
2 files changed, 6 insertions, 2 deletions
diff --git a/src/relx.app.src b/src/relx.app.src
index 3e2b493..d54a7bf 100644
--- a/src/relx.app.src
+++ b/src/relx.app.src
@@ -23,4 +23,8 @@
{vsn, "semver"},
{modules, []},
{registered, []},
- {applications, [kernel, stdlib, getopt, erlware_commons, providers]}]}.
+ {applications, [kernel, stdlib, getopt, erlware_commons, bbmustache, providers]},
+
+ {contributors, ["Eric Merritt", "Tristan Sloughter", "Jordan Wilberding"]},
+ {licenses, ["Apache"]},
+ {links, [{"Github", "https://github.com/erlware/relx"}]}]}.
diff --git a/src/rlx_util.erl b/src/rlx_util.erl
index db448e8..f732055 100644
--- a/src/rlx_util.erl
+++ b/src/rlx_util.erl
@@ -162,7 +162,7 @@ render(Template) ->
render(Template, []).
render(Template, Data) ->
- {ok, mustache:render(ec_cnv:to_binary(Template), Data, [{key_type, atom}])}.
+ {ok, bbmustache:render(ec_cnv:to_binary(Template), Data, [{key_type, atom}])}.
load_file(Files, escript, Name) ->
{Name, Bin} = lists:keyfind(Name, 1, Files),