From 36701edb4d28a20b33c25d4ce4b312dc09e38203 Mon Sep 17 00:00:00 2001 From: Alexander Couzens Date: Thu, 10 Dec 2015 23:06:30 +0100 Subject: coreboot: fix html reporting of bad images because of a broken path un-reproducible images aren't reported --- bin/reproducible_coreboot.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bin/reproducible_coreboot.sh') 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 "
  • \"unreproducible $i ($SIZE) is unreproducible.
  • " >> $ROMS_HTML else SHASUM=$(sha256sum $i/coreboot.rom|cut -d " " -f1) -- cgit v1.2.3-54-g00ecf