Skip to content

Commit

Permalink
Fix options handling
Browse files Browse the repository at this point in the history
Make all options case sensitive.
  • Loading branch information
Hubert depesz Lubaczewski committed Apr 13, 2012
1 parent e499c60 commit 94e75e4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/OmniPITR/Program/Cleanup.pm
Expand Up @@ -9,7 +9,7 @@ use Carp;
use OmniPITR::Tools qw( :all );
use English qw( -no_match_vars );
use File::Spec;
use Getopt::Long;
use Getopt::Long qw( :config no_ignore_case );
use Cwd;

=head1 run()
Expand Down
2 changes: 1 addition & 1 deletion lib/OmniPITR/Program/Restore.pm
Expand Up @@ -13,7 +13,7 @@ use File::Path qw( mkpath rmtree );
use File::Copy;
use Storable;
use Data::Dumper;
use Getopt::Long;
use Getopt::Long qw( :config no_ignore_case );
use Cwd;

=head1 run()
Expand Down

0 comments on commit 94e75e4

Please sign in to comment.