diff options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_coreboot.sh | 4 |
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) |