mirror of
https://github.com/curl/curl.git
synced 2026-07-09 20:47:21 +03:00
release-notes.pl: fix parsing typo
This commit is contained in:
parent
4d925eee0e
commit
3c77e280ce
1 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue