diff options
author | Sean Cribbs <seancribbs@gmail.com> | 2015-08-03 10:26:58 -0500 |
---|---|---|
committer | Sean Cribbs <seancribbs@gmail.com> | 2015-08-03 10:26:58 -0500 |
commit | a9aca6190c00636c93c64ea601df4a35937a8829 (patch) | |
tree | 37239d8b756839801dacf78dfbd43be12d8e7d9a | |
parent | acb2fcd057f519113cf6d08a2c65c6d0a9e3da9b (diff) |
Fix description in "rebar3 new"
`template` is not a kv-style argument, but a plain argument. If you give `template=app` on the command line, you get "template not found."
-rw-r--r-- | src/rebar_prv_new.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rebar_prv_new.erl b/src/rebar_prv_new.erl index 0528f44..6574aca 100644 --- a/src/rebar_prv_new.erl +++ b/src/rebar_prv_new.erl @@ -70,7 +70,7 @@ info() -> "Create rebar3 project based on template and vars.~n" "~n" "Valid command line options:~n" - " template= [var=foo,...]~n", []). + " <template> [var=foo,...]~n", []). is_forced(State) -> {Args, _} = rebar_state:command_parsed_args(State), |