summaryrefslogtreecommitdiff
path: root/priv
diff options
context:
space:
mode:
authorTristan Sloughter <t@crashfast.com>2014-11-23 13:32:50 -0600
committerTristan Sloughter <t@crashfast.com>2014-11-23 13:32:50 -0600
commitddee7ec046f6460e60459b0d09060db6dfc86923 (patch)
tree05a4070c7c1384bb9a64110cdc0e67a8cf0205fd /priv
parentb8ada39c3661ccb2875fac54a2b916af9fb6ccff (diff)
fix plugin module template, add merl to escript, upgrade erlydtl
Diffstat (limited to 'priv')
-rw-r--r--priv/templates/plugin.erl.dtl3
1 files changed, 1 insertions, 2 deletions
diff --git a/priv/templates/plugin.erl.dtl b/priv/templates/plugin.erl.dtl
index af85d7f..e525ab3 100644
--- a/priv/templates/plugin.erl.dtl
+++ b/priv/templates/plugin.erl.dtl
@@ -19,7 +19,7 @@ init(State) ->
{bare, true}, % The task can be run by the user, always true
{deps, ?DEPS}, % The list of dependencies
{example, "rebar {{name}}"}, % How to use the plugin
- {opts, []} % list of options understood by the plugin
+ {opts, []}, % list of options understood by the plugin
{short_desc, "{{desc}}"},
{desc, ""}
]),
@@ -33,4 +33,3 @@ do(State) ->
-spec format_error(any()) -> iolist().
format_error(Reason, State) ->
io_lib:format("~p", [Reason]).
-