gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[gnurl] 196/264: scripts/release-notes.pl: accept colon after the Fixes/


From: gnunet
Subject: [gnurl] 196/264: scripts/release-notes.pl: accept colon after the Fixes/Closes keywords
Date: Thu, 30 Apr 2020 16:08:19 +0200

This is an automated email from the git hooks/post-receive script.

nikita pushed a commit to branch master
in repository gnurl.

commit d1479716b553654402b42cebd916f2adab826c83
Author: Daniel Stenberg <address@hidden>
AuthorDate: Tue Apr 14 23:36:37 2020 +0200

    scripts/release-notes.pl: accept colon after the Fixes/Closes keywords
---
 scripts/release-notes.pl | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/scripts/release-notes.pl b/scripts/release-notes.pl
index 67805f9f1..2cb04e66f 100755
--- a/scripts/release-notes.pl
+++ b/scripts/release-notes.pl
@@ -107,10 +107,10 @@ for my $l (@gitlog) {
         # not the first
         my $line = $1;
 
-        if($line =~ /^Fixes .*[^0-9](\d+)/i) {
+        if($line =~ /^Fixes(:|) .*[^0-9](\d+)/i) {
             push @fixes, $1;
         }
-        elsif($line =~ /^Closes .*[^0-9](\d+)/i) {
+        elsif($line =~ /^Closes(:|) .*[^0-9](\d+)/i) {
             push @closes, $1;
         }
         elsif($line =~ /^Bug: (.*)/i) {

-- 
To stop receiving notification emails like this one, please contact
address@hidden.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]