diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-07-06 20:21:29 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-07-06 20:21:29 +0200 |
commit | a634f5136738b5159bc9a9bba660e89819384b34 (patch) | |
tree | fc660ebf22bae37c47e45e2cf9af5386e7b5e155 /bin | |
parent | 644456527aff084cb0456b44eab25409d86995a9 (diff) | |
download | jenkins.debian.net-a634f5136738b5159bc9a9bba660e89819384b34.tar.xz |
reproducible coreboot: correct filesize
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_coreboot.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_coreboot.sh b/bin/reproducible_coreboot.sh index 6a3b4de4..55794e36 100755 --- a/bin/reproducible_coreboot.sh +++ b/bin/reproducible_coreboot.sh @@ -210,7 +210,7 @@ for i in $(ls -1d *| sort -u) ; do let ALL_ROMS+=1 if [ -f $i/coreboot.rom ] ; then call_debbindiff $i - get_filesize $j + get_filesize $i/coreboot.rom if [ -f $TMPDIR/$i.html ] ; then mv $TMPDIR/$i.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 |