mirror of
https://github.com/moparisthebest/curl
synced 2024-12-25 01:28:51 -05:00
release-notes.pl: also spot common 'closes' typo
This commit is contained in:
parent
265b14d6b3
commit
659ea56040
@ -6,7 +6,7 @@
|
||||
# | (__| |_| | _ <| |___
|
||||
# \___|\___/|_| \_\_____|
|
||||
#
|
||||
# Copyright (C) 2020, Daniel Stenberg, <daniel@haxx.se>, et al.
|
||||
# Copyright (C) 2020 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
|
||||
#
|
||||
# This software is licensed as described in the file COPYING, which
|
||||
# you should have received as part of this distribution. The terms
|
||||
@ -110,8 +110,8 @@ for my $l (@gitlog) {
|
||||
if($line =~ /^Fixes(:|) .*[^0-9](\d+)/i) {
|
||||
push @fixes, $2;
|
||||
}
|
||||
elsif($line =~ /^Closes(:|) .*[^0-9](\d+)/i) {
|
||||
push @closes, $2;
|
||||
elsif($line =~ /^Clo(s|)es(:|) .*[^0-9](\d+)/i) {
|
||||
push @closes, $3;
|
||||
}
|
||||
elsif($line =~ /^Bug: (.*)/i) {
|
||||
push @bug, $1;
|
||||
|
Loading…
Reference in New Issue
Block a user