diff options
-rw-r--r-- | autobuild/results.php | 2 |
1 files changed, 1 insertions, 1 deletions
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; } } |