From 82725ef6d5b1cc5127b33b522211fc35d30893ee Mon Sep 17 00:00:00 2001 From: Olav Vitters Date: Mon, 6 Feb 2017 19:05:17 +0100 Subject: be more strict in determining if patch has been merged --- mgagnome | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mgagnome b/mgagnome index 0a685c8..2cfc16a 100755 --- a/mgagnome +++ b/mgagnome @@ -633,7 +633,7 @@ class SpecFile(object): has_ignored = False has_failed = False for line in cmd_output: - if 'FAILED' in line: + if 'FAILED' in line or 'File to patch:' in line or 'saving rejects to file' in line: has_failed = True break elif 'ignored' in line: -- cgit v1.2.1