Skip to content

Commit a28ae98

Browse files
committed
make-authors: we no longer require organizations
Signed-off-by: Jeff Squyres <[email protected]>
1 parent 82110dc commit a28ae98

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

contrib/dist/make-authors.pl

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -147,11 +147,13 @@ sub save {
147147
foreach my $p (@sorted_people) {
148148
print AUTHORS $p;
149149
if (exists($people->{$p}->{org})) {
150-
print AUTHORS ", $people->{$p}->{org}";
151-
152-
# Record this so that we can warn about it
153-
push(@people_with_unknown_orgs, $p)
154-
if ($people->{$p}->{org} eq $unknown_org);
150+
my $org = $people->{$p}->{org};
151+
if ($org ne $unknown_org) {
152+
print AUTHORS ", $org";
153+
} else {
154+
# Record this so that we can warn about it
155+
push(@people_with_unknown_orgs, $p);
156+
}
155157
}
156158
print AUTHORS "\n";
157159

0 commit comments

Comments
 (0)