1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-23 08:38:49 -05:00

release-notes.pl: fix parsing typo

This commit is contained in:
Daniel Stenberg 2020-04-20 08:03:24 +02:00
parent 4d925eee0e
commit 3c77e280ce
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

View File

@ -108,10 +108,10 @@ for my $l (@gitlog) {
my $line = $1;
if($line =~ /^Fixes(:|) .*[^0-9](\d+)/i) {
push @fixes, $1;
push @fixes, $2;
}
elsif($line =~ /^Closes(:|) .*[^0-9](\d+)/i) {
push @closes, $1;
push @closes, $2;
}
elsif($line =~ /^Bug: (.*)/i) {
push @bug, $1;