diff options
author | Stavros Aronis <aronisstav@gmail.com> | 2018-11-22 20:37:37 +0100 |
---|---|---|
committer | Stavros Aronis <aronisstav@gmail.com> | 2018-11-22 20:37:37 +0100 |
commit | 74f1de612c1e30b57bf36a4ca24862bcb2c111d9 (patch) | |
tree | 1633ccfc26cbc1eaeaae967dc56011b5f9674584 | |
parent | 9c24f558721cd9e63f79e16bc623fbee78ab1739 (diff) |
Add hint for `rebar3 new help` on `rebar3 help new`
-rw-r--r-- | src/rebar_prv_new.erl | 4 |
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); |