1
0
mirror of synced 2026-02-03 14:52:46 +00:00

Stay backwards compatible and still allow -s and -m

This commit is contained in:
Axel Beckert
2010-07-15 18:50:02 +02:00
parent b898cdb064
commit baf965da09

View File

@@ -92,11 +92,11 @@ my $want_version = 0;
my $want_help = 0;
my $want_manual = 0;
my $result = GetOptions( 'mirror' => \$want_mirror,
'suite' => \$want_suite,
'version' => \$want_version,
'manual' => \$want_manual,
'help' => \$want_help );
my $result = GetOptions( 'mirror|m' => \$want_mirror,
'suite|s' => \$want_suite,
'version' => \$want_version,
'manual' => \$want_manual,
'help' => \$want_help );
if ($want_help) {
pod2usage(0);