From: Sadie Powell Date: Wed, 29 Jul 2020 10:43:21 +0000 (+0100) Subject: Fix mkheaders 'experimental push on scalar is now forbidden' warning. X-Git-Url: https://git.netwichtig.de/gitweb/?a=commitdiff_plain;h=587e898d8679c9ee90a25799cdb0285cffa51a7b;p=user%2Fhenk%2Fcode%2Finspircd.git Fix mkheaders 'experimental push on scalar is now forbidden' warning. --- 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"; }