summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTristan Sloughter <t@crashfast.com>2015-06-21 12:15:52 -0500
committerTristan Sloughter <t@crashfast.com>2015-06-21 16:34:51 -0500
commit5866742dd88b89aa0d9bf9618b22e28268500703 (patch)
tree9c68c85ff3e744c16ff3761cade35e0bfdeb73c4 /src
parent4acd8e01510a6ff387dfae499c1d2e863945d3f7 (diff)
use bbmustache package
Diffstat (limited to 'src')
-rw-r--r--src/rebar.app.src1
-rw-r--r--src/rebar_templater.erl2
2 files changed, 2 insertions, 1 deletions
diff --git a/src/rebar.app.src b/src/rebar.app.src
index 6d081a2..0ec0fcb 100644
--- a/src/rebar.app.src
+++ b/src/rebar.app.src
@@ -17,6 +17,7 @@
common_test,
erlware_commons,
providers,
+ bbmustache,
relx,
inets]},
{env, [
diff --git a/src/rebar_templater.erl b/src/rebar_templater.erl
index 353fa36..3aa6e90 100644
--- a/src/rebar_templater.erl
+++ b/src/rebar_templater.erl
@@ -380,4 +380,4 @@ write_file(Output, Data, Force) ->
%% Render a binary to a string, using mustache and the specified context
%%
render(Bin, Context) ->
- mustache:render(ec_cnv:to_binary(Bin), Context, [{key_type, atom}]).
+ bbmustache:render(ec_cnv:to_binary(Bin), Context, [{key_type, atom}]).