diff options
Diffstat (limited to 'bin/reproducible_html_archlinux.sh')
-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>" |