summaryrefslogtreecommitdiff
path: root/src/rebar_templater.erl
diff options
context:
space:
mode:
Diffstat (limited to 'src/rebar_templater.erl')
-rw-r--r--src/rebar_templater.erl9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/rebar_templater.erl b/src/rebar_templater.erl
index 9664b2e..8a01318 100644
--- a/src/rebar_templater.erl
+++ b/src/rebar_templater.erl
@@ -43,12 +43,11 @@
%% ===================================================================
new(app, DirName, State) ->
- create1(State, DirName, "simpleapp");
+ create1(State, DirName, "otpapp");
new(lib, DirName, State) ->
- create1(State, DirName, "simplelib");
-new(node, DirName, State) ->
- %% Alias for create w/ template=simplenode
- create1(State, DirName, "simplenode").
+ create1(State, DirName, "otplib");
+new(rel, DirName, State) ->
+ create1(State, DirName, "otpapp").
list_templates(State) ->
{AvailTemplates, Files} = find_templates(State),