mirror of
https://github.com/moparisthebest/curl
synced 2025-02-28 17:31:46 -05:00
scripts/release-notes.pl: accept colon after the Fixes/Closes keywords
This commit is contained in:
parent
19ec94d944
commit
d1479716b5
@ -107,10 +107,10 @@ for my $l (@gitlog) {
|
|||||||
# not the first
|
# not the first
|
||||||
my $line = $1;
|
my $line = $1;
|
||||||
|
|
||||||
if($line =~ /^Fixes .*[^0-9](\d+)/i) {
|
if($line =~ /^Fixes(:|) .*[^0-9](\d+)/i) {
|
||||||
push @fixes, $1;
|
push @fixes, $1;
|
||||||
}
|
}
|
||||||
elsif($line =~ /^Closes .*[^0-9](\d+)/i) {
|
elsif($line =~ /^Closes(:|) .*[^0-9](\d+)/i) {
|
||||||
push @closes, $1;
|
push @closes, $1;
|
||||||
}
|
}
|
||||||
elsif($line =~ /^Bug: (.*)/i) {
|
elsif($line =~ /^Bug: (.*)/i) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user