diff options
author | Sadie Powell <sadie@witchery.services> | 2020-07-29 11:43:21 +0100 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2020-07-29 11:43:21 +0100 |
commit | 587e898d8679c9ee90a25799cdb0285cffa51a7b (patch) | |
tree | 5dadfa88f9e296de7b9006690d1f4c9f5d8d715a /tools/mkheaders | |
parent | 5d8dc98dfad1e13e840ea0322fb624dc8397fddd (diff) |
Fix mkheaders 'experimental push on scalar is now forbidden' warning.
Diffstat (limited to 'tools/mkheaders')
-rwxr-xr-x | tools/mkheaders | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/mkheaders b/tools/mkheaders index 8367b94a1..0569ec422 100755 --- a/tools/mkheaders +++ b/tools/mkheaders @@ -92,12 +92,12 @@ for my $path (@paths) { next unless scalar keys %author > 1; my $display = sprintf "%s <%s>", $author{NAME}, $author{EMAIL}; $authors{$display} //= []; - push $authors{$display}, $author{YEAR}; + push @{$authors{$display}}, $author{YEAR}; for my $commit (uniq @{$author{COMMITS}}) { my $details = `git rev-list --format=%B --max-count=1 $commit`; while ($details =~ /co-authored-by: ([^<]+<[^>]+>)/gi) { $authors{$1} //= []; - push $authors{$1}, $author{YEAR}; + push @{$authors{$1}}, $author{YEAR}; } } undef %author; @@ -115,7 +115,7 @@ for my $path (@paths) { $last_year = $year; } else { if ($last_year == $start_year) { - push @year_ranges, $last_year; + push @year_ranges, $last_year; } else { push @year_ranges, "$start_year-$last_year"; } @@ -124,7 +124,7 @@ for my $path (@paths) { } if (defined $last_year) { if ($last_year == $start_year) { - push @year_ranges, $last_year; + push @year_ranges, $last_year; } else { push @year_ranges, "$start_year-$last_year"; } |