Tests: Less aggressive contributors check.

This commit is contained in:
Wilson Snyder 2019-12-23 19:01:29 -05:00
parent 5089f997cc
commit a0d391d695
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ sub read_user {
sub read_authors {
# Check recent commits in case did commit
my $git_auths = `git log '--pretty=format:%aN <%aE>' | head -20`;
my $git_auths = `git log '--pretty=format:%aN <%aE>' | head -5`;
foreach my $line (split /\n/, $git_auths) {
$line =~ s/ *<[^>]*>//;
$Authors{$line} = 1;