We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82110dc commit a28ae98Copy full SHA for a28ae98
contrib/dist/make-authors.pl
@@ -147,11 +147,13 @@ sub save {
147
foreach my $p (@sorted_people) {
148
print AUTHORS $p;
149
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);
+ my $org = $people->{$p}->{org};
+ if ($org ne $unknown_org) {
+ print AUTHORS ", $org";
+ } else {
+ # Record this so that we can warn about it
155
+ push(@people_with_unknown_orgs, $p);
156
+ }
157
}
158
print AUTHORS "\n";
159
0 commit comments