diff options
-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 } |