From b2c0638135ce181de7019f7f391b9e71af5076ca Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Wed, 8 Feb 2006 17:32:48 +0000 Subject: [PATCH] - Added a short option (-a) for --auto-cmd. - Made the --auto-cmd REGEX a case-insensitive match. --- verify-patches | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/verify-patches b/verify-patches index 4ab2242..f08f198 100755 --- a/verify-patches +++ b/verify-patches @@ -15,10 +15,10 @@ GetOptions( 'minor-updates|u' => \$minor_updates, 'prepare-source|p' => \$prepare_source, 'require-quit|Q' => \$require_quit, - 'auto-cmd=s' => \$auto_cmd, + 'auto-cmd|a=s' => \$auto_cmd, ) or &usage; -$auto_cmd = qr/^($auto_cmd)$/; +$auto_cmd = qr/^($auto_cmd)$/i; my $interesting_fuzz = $minor_updates ? '\d' : '[2-9]'; @@ -289,7 +289,7 @@ sub usage { die <