From: Wayne Davison Date: Sun, 20 Feb 2005 01:13:12 +0000 (+0000) Subject: Skip any version of the gzip-rsyncable diff. X-Git-Url: https://mattmccutchen.net/rsync/rsync-patches.git/commitdiff_plain/10fbfa259f608c3fb73dc4c1d03337e836460286 Skip any version of the gzip-rsyncable diff. --- diff --git a/verify-patches b/verify-patches index 799548b..d4d2fcc 100755 --- a/verify-patches +++ b/verify-patches @@ -64,7 +64,7 @@ unless ($no_cvs) { DIFF: foreach my $diff (@ARGV) { next unless $diff =~ /\.diff$/; - next if $diff =~ /gzip-rsyncable\.diff$/; + next if $diff =~ /gzip-rsyncable[-_a-z]*\.diff$/; $diff =~ s#^(patches|\.\.)/##; open(IN, "../$diff") or die $!;