summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTilman Holschuh <tilman.holschuh@gmail.com>2015-03-16 10:51:39 -0700
committerTilman Holschuh <tilman.holschuh@gmail.com>2015-03-16 10:51:39 -0700
commitaf5ba45f27964bfb640d5fb944ea54dd0359530d (patch)
treeab051401f0a2e9b053a595d8ac3dcd4725bb7465
parent6e337e022c3c4521ee84121845305b494127aaf2 (diff)
Decapitalize short option for 'version'
-rw-r--r--src/rebar3.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rebar3.erl b/src/rebar3.erl
index d80773b..87258aa 100644
--- a/src/rebar3.erl
+++ b/src/rebar3.erl
@@ -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."}
].