Sfoglia il codice sorgente

Merge pull request #1949 from aronisstav/add-more-help-hint

Add hint for `rebar3 new help` on `rebar3 help new`
pull/1965/head
Fred Hebert 6 anni fa
committed by GitHub
parent
commit
f2d556d0b9
Non sono state trovate chiavi note per questa firma nel database ID Chiave GPG: 4AEE18F83AFDEB23
1 ha cambiato i file con 3 aggiunte e 1 eliminazioni
  1. +3
    -1
      src/rebar_prv_new.erl

+ 3
- 1
src/rebar_prv_new.erl Vedi File

@ -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);

Caricamento…
Annulla
Salva