diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-12-09 11:13:33 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-12-09 11:14:05 +0100 |
commit | 908dd0b4b6e3478ddd1a2f02c6d3831bd4152245 (patch) | |
tree | cf832402dd9c3e64fb03a491cc2738589a544255 /bin | |
parent | 2a31967b96677472252d66bd54cc1e5b743c7a0d (diff) | |
download | jenkins.debian.net-908dd0b4b6e3478ddd1a2f02c6d3831bd4152245.tar.xz |
reproducible archlinux: correctly display the test dates
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_html_archlinux.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_html_archlinux.sh b/bin/reproducible_html_archlinux.sh index 0fd018ee..432ae173 100755 --- a/bin/reproducible_html_archlinux.sh +++ b/bin/reproducible_html_archlinux.sh @@ -66,7 +66,7 @@ for PKG in $(find $ARCHBASE/* -maxdepth 1 -type d -exec basename {} \;) ; do done fi write_page " </td>" - write_page " <td>$(ls -dl $ARCHBASE/$PKG/build1.log|cut -d " " -f6-8)</td>" + write_page " <td>$(LANG=C TZ=UTC ls --full-time $ARCHBASE/$PKG/build1.log | cut -d ' ' -f6 )</td>" for LOG in build1.log build2.log ; do if [ -f $ARCHBASE/$PKG/$LOG ] ; then write_page " <td><a href=\"/archlinux/$PKG/$LOG\">$LOG</a></td>" |