summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorFred Hebert <mononcqc@ferd.ca>2018-11-27 10:35:44 -0500
committerGitHub <noreply@github.com>2018-11-27 10:35:44 -0500
commitf2d556d0b9c1a6d5c1de6cb45566aabe0a8f3e7a (patch)
tree6d7436d3f04aa53abe7f0f3d60a17f178a11a699 /src
parent99a7b7ea36bea41b687475ccfd4dee7dfd6d36d3 (diff)
parent74f1de612c1e30b57bf36a4ca24862bcb2c111d9 (diff)
Merge pull request #1949 from aronisstav/add-more-help-hint
Add hint for `rebar3 new help` on `rebar3 help new`
Diffstat (limited to 'src')
-rw-r--r--src/rebar_prv_new.erl4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/rebar_prv_new.erl b/src/rebar_prv_new.erl
index f632362..c6a1e9b 100644
--- a/src/rebar_prv_new.erl
+++ b/src/rebar_prv_new.erl
@@ -82,7 +82,9 @@ info() ->
"Create rebar3 project based on template and vars.~n"
"~n"
"Valid command line options:~n"
- " <template> [var=foo,...]~n", []).
+ " <template> [var=foo,...]~n"
+ "~n"
+ "See available templates with: `rebar3 new help`~n", []).
strip_flags([]) -> [];
strip_flags(["-"++_|Opts]) -> strip_flags(Opts);