diff options
author | Andreas Guldstrand <andreas.guldstrand@gmail.com> | 2016-02-12 19:10:34 +0100 |
---|---|---|
committer | Andreas Guldstrand <andreas.guldstrand@gmail.com> | 2016-02-13 00:43:44 +0100 |
commit | 49399cd278ba1ff469237caada226c2865460c2f (patch) | |
tree | ac17bfc44110acf01550dbdc088db2806d6be995 | |
parent | e10d489f915c5b923a8fd6a8ee6cb2974d73a63f (diff) | |
download | sbotools2-49399cd278ba1ff469237caada226c2865460c2f.tar.xz |
Don't ignore case in option parameters
-rwxr-xr-x | sboconfig | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -15,7 +15,7 @@ use strict; use warnings FATAL => 'all'; use SBO::Lib qw/ usage_error script_error $tempdir open_read open_fh %config $conf_dir $conf_file show_version /; use File::Basename; -use Getopt::Long; +use Getopt::Long qw(:config no_ignore_case_always); use File::Copy; use File::Path qw(make_path); use File::Temp qw(tempfile);; |