[Pkg-libvirt-commits] [libguestfs] 44/72: bugs: Ignore bugs in RELEASE_PENDING state.

Hilko Bengen bengen at moszumanska.debian.org
Sun Apr 5 15:19:50 UTC 2015


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

bengen pushed a commit to branch master
in repository libguestfs.

commit ddc9db2f9b480f1d8b394130cd95399ce0188b8c
Author: Richard W.M. Jones <rjones at redhat.com>
Date:   Thu Mar 5 13:41:21 2015 +0000

    bugs: Ignore bugs in RELEASE_PENDING state.
    
    It's effectively the same as CLOSED.
    
    (cherry picked from commit 025f1d2bc76ebb6205393cc234004c1dcd1b0a67)
---
 update-bugs.sh | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/update-bugs.sh b/update-bugs.sh
index f82142b..1760ae6 100755
--- a/update-bugs.sh
+++ b/update-bugs.sh
@@ -82,8 +82,10 @@ When reporting a new bug, please check:
 lastclass=X
 count=0
 while read bugno status summary; do
-    # Ignore CLOSED bugs in this list.
-    if [ "$status" = "CLOSED" ]; then continue; fi
+    # Ignore RELEASE_PENDING or CLOSED bugs in this list.
+    if [ "$status" = "RELEASE_PENDING" -o "$status" = "CLOSED" ]; then
+        continue
+    fi
 
     # Treat ASSIGNED the same as NEW.
     # Treat MODIFIED, POST and ON_QA as the same.

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-libvirt/libguestfs.git



More information about the Pkg-libvirt-commits mailing list