1
0
mirror of synced 2026-01-25 19:36:27 +00:00

Update indentation for options.

This helps t/getopt.t to pass.
This commit is contained in:
Stéphane Jourdois
2010-07-11 12:59:15 +02:00
committed by Stéphane Jourdois
parent 0f751d1d26
commit d36672f8d8
2 changed files with 9 additions and 5 deletions

View File

@@ -239,7 +239,9 @@ sub parseCommandLineArguments
# Parse options.
#
GetOptions( "test=s", \$CONFIG{ 'prefix' },
"help", \$HELP, "manual", \$MANUAL, "version", \$VERSION );
"help", \$HELP,
"manual", \$MANUAL,
"version", \$VERSION );
pod2usage(1) if $HELP;
pod2usage( -verbose => 2 ) if $MANUAL;

View File

@@ -452,10 +452,12 @@ sub parseCommandLineArguments
# Parse options.
#
GetOptions( "dir=s", \$CONFIG{ 'dir' }, "lvm=s", \$CONFIG{ 'lvm' },
"evms=s", \$CONFIG{ 'evms' }, "help", \$HELP,
"manual", \$MANUAL, "version", \$VERSION
);
GetOptions( "dir=s", \$CONFIG{ 'dir' },
"lvm=s", \$CONFIG{ 'lvm' },
"evms=s", \$CONFIG{ 'evms' },
"help", \$HELP,
"manual", \$MANUAL,
"version", \$VERSION );
pod2usage(1) if $HELP;
pod2usage( -verbose => 2 ) if $MANUAL;