summaryrefslogtreecommitdiffstats
path: root/autobuild/results.php
diff options
context:
space:
mode:
Diffstat (limited to 'autobuild/results.php')
-rw-r--r--autobuild/results.php12
1 files changed, 9 insertions, 3 deletions
diff --git a/autobuild/results.php b/autobuild/results.php
index c11f5a9..f2dfa18 100644
--- a/autobuild/results.php
+++ b/autobuild/results.php
@@ -126,12 +126,18 @@ while (!feof($status_file)) {
if(!array_key_exists($package, $packages)) {
$removed[$rpm] = 1;
} else {
- $pkg_stat = stat('/distrib/bootstrap/distrib/cauldron/SRPMS/core/release/'.$packages[$package]);
# For recreate_srpm_failure, $rpm is the one that was in the repo
# For other failures, mga release may be incorrect so use something less reliable
- if (($status == 'recreate_srpm_failure' && $rpm != $packages[$package])
- || ($pkg_stat['mtime'] > $start_time)) {
+ if ($status == 'recreate_srpm_failure' && $rpm != $packages[$package]) {
$fixed[$rpm] = 1;
+ } else {
+ $file = '/distrib/bootstrap/distrib/cauldron/SRPMS/core/release/' . $packages[$package];
+ if (file_exists($file)) {
+ $pkg_stat = stat($file);
+ if ($pkg_stat['mtime'] > $start_time) {
+ $fixed[$rpm] = 1;
+ }
+ }
}
}
}