From 7f56170335f30fa979e0aa14c7e8cf920cd90506 Mon Sep 17 00:00:00 2001 From: "Kyle J. McKay" Date: Wed, 14 Oct 2015 03:10:13 -0700 Subject: [PATCH] Markdown.pl: remove duplicate option definition Option parsing is case-insensitive so 'V' and 'v' are dupes. Signed-off-by: Kyle J. McKay --- Markdown.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Markdown.pl b/Markdown.pl index 44e94aa..f90b55d 100755 --- a/Markdown.pl +++ b/Markdown.pl @@ -196,7 +196,7 @@ elsif (!caller) { Getopt::Long::Configure('pass_through'); GetOptions(\%cli_opts, 'help|h', - 'version|V|v', + 'version|V', 'shortversion|short-version|s', 'html4tags', 'htmlroot|r=s',