Browse Source

Merge pull request #273 from ypaq/ypaq-doc-fix-version

Decapitalize short option for 'version' flag
pull/275/head
Tristan Sloughter 10 years ago
parent
commit
eba1caca80
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/rebar3.erl

+ 1
- 1
src/rebar3.erl View File

@ -245,7 +245,7 @@ global_option_spec_list() ->
[
%% {Name, ShortOpt, LongOpt, ArgSpec, HelpMsg}
{help, $h, "help", undefined, "Print this help."},
{version, $V, "version", undefined, "Show version information."},
{version, $v, "version", undefined, "Show version information."},
%{config, $C, "config", string, "Rebar config file to use."},
{task, undefined, undefined, string, "Task to run."}
].

Loading…
Cancel
Save