diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-07-06 15:16:11 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-07-06 15:16:11 +0200 |
commit | 3eaf6a0be0e75b042a750fa1e01e3742ccb17687 (patch) | |
tree | 1a168216c9ba970603213606e75f5edbf7908c36 /bin | |
parent | e947c26864e238433db0ac73c119cfc0710b2241 (diff) | |
download | jenkins.debian.net-3eaf6a0be0e75b042a750fa1e01e3742ccb17687.tar.xz |
reproducible coreboot/openwrt/netbsd: fix braino when calculating file size
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_common.sh | 2 |
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 } |