mirror of
https://github.com/yuzu-emu/mbedtls
synced 2024-11-25 10:08:56 +00:00
Fixes formatting of spacing in config.pl
This commit is contained in:
parent
c3352d6be6
commit
024ac945c1
1 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue