From 07932c22076f2d3abc510088d4a2703c8a62c7bb Mon Sep 17 00:00:00 2001 From: fly Date: Sun, 2 Feb 2020 00:42:35 +0000 Subject: [PATCH] Fix Signed-off-by: fly --- flag-rebuild.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flag-rebuild.py b/flag-rebuild.py index 2d0b1e4..8774b76 100755 --- a/flag-rebuild.py +++ b/flag-rebuild.py @@ -68,7 +68,7 @@ def get_status(name): msg = sock.recv(128) sock.close() msg = msg.decode() - match = re.match(r"pending|done|rebuild|skip|started", msg) + match = re.match(r"pending|done|rebuild|skip|started|packaged", msg) if match != None: return match.group(0) else: