gnunet-svn
[Top][All Lists]
Advanced

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

[gnurl] 221/264: release-notes.pl: fix parsing typo


From: gnunet
Subject: [gnurl] 221/264: release-notes.pl: fix parsing typo
Date: Thu, 30 Apr 2020 16:08:44 +0200

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

nikita pushed a commit to branch master
in repository gnurl.

commit 3c77e280ce353449ca77ef0b387aa5551505b335
Author: Daniel Stenberg <address@hidden>
AuthorDate: Mon Apr 20 08:03:24 2020 +0200

    release-notes.pl: fix parsing typo
---
 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 2cb04e66f..2be0eab8f 100755
--- a/scripts/release-notes.pl
+++ b/scripts/release-notes.pl
@@ -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;

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



reply via email to

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