From 30cd7ec1cfc46e8185d5a7a8444ce72eeee5adcb Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Mon, 18 Sep 2006 00:13:50 +0000 Subject: [PATCH] The --min-size arg doesn't need to be path-checked either. --- support/cull_options | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/support/cull_options b/support/cull_options index 5e31cb0a..07a57021 100755 --- a/support/cull_options +++ b/support/cull_options @@ -55,7 +55,7 @@ EOT foreach my $opt (sort keys %long_opt) { my $val = $long_opt{$opt}; - $val = 1 if $opt =~ /^max-/; + $val = 1 if $opt =~ /^(max-|min-)/; $val = 3 if $opt eq 'files-from'; $val = '$ro ? -1 : ' . $val if $opt =~ /^remove-/; print " '$opt' => $val,\n"; -- 2.34.1