248,258d247 < < Getopt::Long::Configure("require_order", "pass_through"); < GetOptions( < "trackers=s" => \$opts{trackers}, < "config=s" => \$opts{config}, < "lib=s" => \$opts{lib}, < "help" => \$opts{help}, < "verbose" => \$opts{verbose}, < ) or abortWithUsage(); < Getopt::Long::Configure("require_order", "no_pass_through"); < 267c256 < $opts{$1} = $2 unless ( defined $opts{$1} ); --- > $opts{$1} = $2; 271a261,270 > Getopt::Long::Configure("require_order", "pass_through"); > GetOptions( > "trackers=s" => \$opts{trackers}, > "config=s" => \$opts{config}, > "lib=s" => \$opts{lib}, > "help" => \$opts{help}, > "verbose" => \$opts{verbose}, > ) or abortWithUsage(); > Getopt::Long::Configure("require_order", "no_pass_through"); >