From 11c75b72a307722076918bd1f45fbf1d9b1ab2c1 Mon Sep 17 00:00:00 2001 From: Pascal Terjan Date: Mon, 14 Jan 2013 00:59:25 +0000 Subject: Support failure being on a more recent version than the one on the mirrors, for fake autobuild --- autobuild/results.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autobuild/results.php b/autobuild/results.php index 4a9e576..8c8c3c6 100644 --- a/autobuild/results.php +++ b/autobuild/results.php @@ -79,7 +79,7 @@ while (!feof($status_file)) { preg_match("/(.*)-([^-]*-[^-]*mga)[1-9].src.rpm/", $rpm, $matches); if(!$packages[$matches[1]]) { $removed[$rpm] = 1; - } elseif ($packages[$matches[1]] != $matches[2]) { + } elseif ($packages[$matches[1]] > $matches[2]) { $fixed[$rpm] = 1; } } -- cgit v1.2.1