From 4f0998dce3810b573266f075bf78fd36d36486e1 Mon Sep 17 00:00:00 2001 From: Olivier Blin Date: Tue, 3 Nov 2015 01:31:33 +0100 Subject: List all failed arches in status result, even if build for mandatory arches is successful --- index.php | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'index.php') diff --git a/index.php b/index.php index 4e42dd3..6c12131 100644 --- a/index.php +++ b/index.php @@ -191,6 +191,12 @@ if ($total > 0) { : sprintf(' %s %s', $typestr, $show_time); + $failed_arches = array_keys($p['status']['fail']); + if (!empty($failed_arches)) { + sort($failed_arches); + $s .= ' ' . join(' ', $failed_arches) . ''; + } + $s .= ''; } echo sprintf('
  • %d packages submitted in the past %d hours:

    ', $total, $max_modified * 24); -- cgit v1.2.1