(big-config) compile: dont complain about "@foo" not having a pubkey

This commit is contained in:
Sitaram Chamarty 2010-05-14 18:20:31 +05:30
parent c8f83a03dd
commit 0139fe0e97

View file

@ -576,7 +576,7 @@ for my $pubkey (`find . -type f`)
# lint check 3; a little more severe than the first two I guess... # lint check 3; a little more severe than the first two I guess...
for my $user (sort keys %user_list) for my $user (sort keys %user_list)
{ {
next if $user =~ /^(gitweb|daemon|\@all|~\$creator|\$readers|\$writers)$/ or $user_list{$user} eq 'has pubkey'; next if $user =~ /^(gitweb|daemon|\@.*|~\$creator|\$readers|\$writers)$/ or $user_list{$user} eq 'has pubkey';
print STDERR "$WARN user $user in config, but has no pubkey!\n"; print STDERR "$WARN user $user in config, but has no pubkey!\n";
} }