diff options
author | Pascal Terjan <pterjan@mageia.org> | 2012-12-10 21:59:10 +0000 |
---|---|---|
committer | Pascal Terjan <pterjan@mageia.org> | 2012-12-10 21:59:10 +0000 |
commit | 2b04e8973d5069bc9bb3e8d32392f15c56393837 (patch) | |
tree | e344470b15bedfdc5bc33d492763d1c3ba8c49a6 /autobuild | |
parent | 11940361dc84b455351221b3f3b7047108756d4a (diff) | |
download | pkgsubmit-2b04e8973d5069bc9bb3e8d32392f15c56393837.tar pkgsubmit-2b04e8973d5069bc9bb3e8d32392f15c56393837.tar.gz pkgsubmit-2b04e8973d5069bc9bb3e8d32392f15c56393837.tar.bz2 pkgsubmit-2b04e8973d5069bc9bb3e8d32392f15c56393837.tar.xz pkgsubmit-2b04e8973d5069bc9bb3e8d32392f15c56393837.zip |
Sort packages by name
Diffstat (limited to 'autobuild')
-rw-r--r-- | autobuild/index.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/autobuild/index.php b/autobuild/index.php index 54191fa..83bee67 100644 --- a/autobuild/index.php +++ b/autobuild/index.php @@ -46,6 +46,9 @@ while (!feof($status_file)) { } fclose($status_file); +sort($success); +sort($failure); + $nb_failed = count($failure); $nb_success = count($success); $nb_fixed = count($fixed); |