From 870aa702c772689f1b72470d1d347ed8ab5473a2 Mon Sep 17 00:00:00 2001 From: bnewbold Date: Wed, 21 Oct 2015 16:35:36 -0700 Subject: openwrt: fix trivial double 'K' sizes in output HTML --- bin/reproducible_openwrt.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/reproducible_openwrt.sh b/bin/reproducible_openwrt.sh index 99ae14e4..15fd2d3b 100755 --- a/bin/reproducible_openwrt.sh +++ b/bin/reproducible_openwrt.sh @@ -231,7 +231,7 @@ for i in * ; do for j in $(printf "$IMGS1\n$IMGS2" | sort -u ) ; do let ALL_IMAGES+=1 if [ ! -f $TMPDIR/b1/$i/$j -o ! -f $TMPDIR/b2/$i/$j ] ; then - echo " \"ftbfs $j (${SIZE}K) failed to build once." >> $DBD_HTML + echo " \"ftbfs $j (${SIZE}) failed to build once." >> $DBD_HTML rm -f $BASE/openwrt/dbd/$i/$j.html # cleanup from previous (unreproducible) tests - if needed continue fi @@ -240,7 +240,7 @@ for i in * ; do if [ -f $TMPDIR/$i/$j.html ] ; then mkdir -p $BASE/openwrt/dbd/$i mv $TMPDIR/$i/$j.html $BASE/openwrt/dbd/$i/$j.html - echo " \"unreproducible $j (${SIZE}K) is unreproducible." >> $DBD_HTML + echo " \"unreproducible $j (${SIZE}) is unreproducible." >> $DBD_HTML else SHASUM=$(sha256sum $j|cut -d " " -f1) echo " \"reproducible $j ($SHASUM, $SIZE) is reproducible." >> $DBD_HTML @@ -269,7 +269,7 @@ for i in * ; do for j in $(printf "$PKGS1\n$PKGS2" | sort -u ) ; do let ALL_PACKAGES+=1 if [ ! -f $TMPDIR/b1/$i/$j -o ! -f $TMPDIR/b2/$i/$j ] ; then - echo " \"ftbfs $j (${SIZE}K) failed to build once." >> $DBD_BAD_PKGS_HTML + echo " \"ftbfs $j (${SIZE}) failed to build once." >> $DBD_BAD_PKGS_HTML rm -f $BASE/openwrt/dbd/$i/$j.html # cleanup from previous (unreproducible) tests - if needed continue fi -- cgit v1.2.3-54-g00ecf