diff options
| -rw-r--r-- | www/daily.t | 3 | ||||
| -rwxr-xr-x | www/dailymod.pl | 2 | ||||
| -rwxr-xr-x | www/dailysrc.pl | 2 |
3 files changed, 4 insertions, 3 deletions
diff --git a/www/daily.t b/www/daily.t index d926fe4..d538fc5 100644 --- a/www/daily.t +++ b/www/daily.t @@ -28,7 +28,8 @@ They are <i>not</i> official releases, they are in fact almost guaranteed to not <h2>Build status</h2> -<p>This table shows which targets are currently buildable with the CVS code: +<p>This table shows which targets are currently buildable with the CVS code. +The timestamp is GMT. <p> <!--#include virtual="buildstatus.link" --> diff --git a/www/dailymod.pl b/www/dailymod.pl index f923a41..0e9392b 100755 --- a/www/dailymod.pl +++ b/www/dailymod.pl @@ -7,7 +7,7 @@ sub list { opendir(DIR, "$basedir/$dir") or die "Can't opendir($basedir/$dir)"; - @tarballs = grep { /^archos/ } readdir(DIR); + @tarballs = sort grep { /^archos/ } readdir(DIR); closedir DIR; print "<ul>\n"; diff --git a/www/dailysrc.pl b/www/dailysrc.pl index ea3cd40..27ef199 100755 --- a/www/dailysrc.pl +++ b/www/dailysrc.pl @@ -4,7 +4,7 @@ $basedir = "/home/dast/rockbox-build/daily-build/"; opendir(DIR, $basedir) or die "Can't opendir($basedir)"; -@tarballs = grep { /^rockbox-daily-/ } readdir(DIR); +@tarballs = sort grep { /^rockbox-daily-/ } readdir(DIR); closedir DIR; print "<ul>\n"; |