summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_coreboot.sh
diff options
context:
space:
mode:
authorAlexander Couzens <lynxis@fe80.eu>2015-12-10 23:06:30 +0100
committerHolger Levsen <holger@layer-acht.org>2015-12-11 10:57:17 +0100
commit36701edb4d28a20b33c25d4ce4b312dc09e38203 (patch)
treef7544e8e752ac99f873fb01ac90ca1496509fedd /bin/reproducible_coreboot.sh
parent3229b47b17793c2f79439b40b865c3853b8cfc31 (diff)
downloadjenkins.debian.net-36701edb4d28a20b33c25d4ce4b312dc09e38203.tar.xz
coreboot: fix html reporting of bad images
because of a broken path un-reproducible images aren't reported
Diffstat (limited to 'bin/reproducible_coreboot.sh')
-rwxr-xr-xbin/reproducible_coreboot.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/reproducible_coreboot.sh b/bin/reproducible_coreboot.sh
index c690e91d..a7539618 100755
--- a/bin/reproducible_coreboot.sh
+++ b/bin/reproducible_coreboot.sh
@@ -172,8 +172,8 @@ for i in $(ls -1d *| sort -u) ; do
if [ -f $i/coreboot.rom ] ; then
call_diffoscope $i coreboot.rom
get_filesize $i/coreboot.rom
- if [ -f $TMPDIR/$i.html ] ; then
- mv $TMPDIR/$i.html $BASE/coreboot/dbd/$i.html
+ if [ -f $TMPDIR/$i/coreboot.rom.html ] ; then
+ mv $TMPDIR/$i/coreboot.rom.html $BASE/coreboot/dbd/$i.html
echo " <li><a href=\"dbd/$i.html\"><img src=\"/userContent/static/weather-showers-scattered.png\" alt=\"unreproducible icon\" /> $i</a> ($SIZE) is unreproducible.</li>" >> $ROMS_HTML
else
SHASUM=$(sha256sum $i/coreboot.rom|cut -d " " -f1)