Fixes formatting of spacing in config.pl

This commit is contained in:
SimonB 2016-04-04 13:49:10 +01:00 committed by Simon Butcher
parent c3352d6be6
commit 024ac945c1

View file

@ -97,16 +97,16 @@ my $force_option = 0;
my ($arg, $name, $value, $action); my ($arg, $name, $value, $action);
while ( $arg = shift) { while ($arg = shift) {
# Check if the argument is an option # Check if the argument is an option
if ( $arg eq "-f" || $arg eq "--file" ) { if ($arg eq "-f" || $arg eq "--file") {
$config_file = shift; $config_file = shift;
-f $config_file or die "No such file: $config_file\n"; -f $config_file or die "No such file: $config_file\n";
} }
elsif ( $arg eq "-o" || $arg eq "--force" ) { elsif ($arg eq "-o" || $arg eq "--force") {
$force_option = 1; $force_option = 1;
} }