diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-10-16 23:57:20 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-10-16 23:57:20 +0200 |
commit | 307247cd4a8689653aa9525c6f916bc16eb4cc86 (patch) | |
tree | 9961d87ffd6f9fbd7bb9db849ffe6448fb02abf2 /bin | |
parent | f96f24a848c2916d417f30b72626877ffa23cde5 (diff) | |
download | jenkins.debian.net-307247cd4a8689653aa9525c6f916bc16eb4cc86.tar.xz |
reproducible arch: only list packages
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_html_archlinux.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/reproducible_html_archlinux.sh b/bin/reproducible_html_archlinux.sh index 0df32283..4597199a 100755 --- a/bin/reproducible_html_archlinux.sh +++ b/bin/reproducible_html_archlinux.sh @@ -25,9 +25,10 @@ cat > $PAGE <<- EOF <title>Repoducible Archlinux ?</title> </head> <body> + <p>This is work in progress and brand new…</p> EOF write_page "<table><tr><th>source package</th><th>test date</th><th>1st build log</th><th>2nd build log</th><th>diffoscope output for binary packages</th></tr>" -for PKG in $(cd $ARCHBASE/$PKG/ ; ls * -d1) ; do +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>" |