From 3d0aa5e84a2b2a7158f1e4b2070fecd130a3e2bc Mon Sep 17 00:00:00 2001 From: Fred Hebert Date: Sun, 10 Jan 2016 11:44:37 -0500 Subject: Unquote templates, add a warning instead. --- priv/templates/plugin.erl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'priv/templates/plugin.erl') diff --git a/priv/templates/plugin.erl b/priv/templates/plugin.erl index c6e5e40..218960d 100644 --- a/priv/templates/plugin.erl +++ b/priv/templates/plugin.erl @@ -1,8 +1,8 @@ --module('{{name}}'). +-module({{name}}). -export([init/1]). -spec init(rebar_state:t()) -> {ok, rebar_state:t()}. init(State) -> - {ok, State1} = '{{name}}_prv':init(State), + {ok, State1} = {{name}}_prv:init(State), {ok, State1}. -- cgit v1.1