summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_common.sh
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2015-07-06 15:16:11 +0200
committerHolger Levsen <holger@layer-acht.org>2015-07-06 15:16:11 +0200
commit3eaf6a0be0e75b042a750fa1e01e3742ccb17687 (patch)
tree1a168216c9ba970603213606e75f5edbf7908c36 /bin/reproducible_common.sh
parente947c26864e238433db0ac73c119cfc0710b2241 (diff)
downloadjenkins.debian.net-3eaf6a0be0e75b042a750fa1e01e3742ccb17687.tar.xz
reproducible coreboot/openwrt/netbsd: fix braino when calculating file size
Diffstat (limited to 'bin/reproducible_common.sh')
-rwxr-xr-xbin/reproducible_common.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_common.sh b/bin/reproducible_common.sh
index c2fe6c8f..c5a3e7ab 100755
--- a/bin/reproducible_common.sh
+++ b/bin/reproducible_common.sh
@@ -420,6 +420,6 @@ get_filesize() {
elif [ $BYTESIZE -gt 1024 ] ; then
SIZE="$(echo $BYTESIZE/1024|bc)K"
else
- SIZE="$(echo $BYTESIZE/1024|bc) bytes"
+ SIZE="$BYTESIZE bytes"
fi
}