diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-10-18 19:17:18 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-10-18 19:17:18 +0200 |
commit | 7113dc86e7642a52d0b6e5a6301ae641e7ecf3fb (patch) | |
tree | d9839f2917bf3a1cee2619af6cec9c22b54f0d24 | |
parent | 8cfbc7123b88dd5b5a2d4a3779acc8f95a28d375 (diff) | |
download | jenkins.debian.net-7113dc86e7642a52d0b6e5a6301ae641e7ecf3fb.tar.xz |
reproducible arch: use logfile as indicator of build age
-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 45e41096..73660566 100755 --- a/bin/reproducible_html_archlinux.sh +++ b/bin/reproducible_html_archlinux.sh @@ -39,7 +39,7 @@ write_page " <table><tr><th>source package</th><th>test date</th><th>1st buil for PKG in $(find $ARCHBASE/* -maxdepth 1 -type d -exec basename {} \;) ; do write_page " <tr>" write_page " <td>$PKG</td>" - write_page " <td>$(ls $ARCHBASE/$PKG -dl|cut -d " " -f6-8)</td>" + write_page " <td>$(ls -dl $ARCHBASE/$PKG/build1.log|cut -d " " -f6-8)</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>" |