summaryrefslogtreecommitdiff
path: root/src/util.sh
diff options
context:
space:
mode:
Diffstat (limited to 'src/util.sh')
-rw-r--r--src/util.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.sh b/src/util.sh
index 11db5e3..98af40b 100644
--- a/src/util.sh
+++ b/src/util.sh
@@ -37,7 +37,7 @@ wait_for_download () {
while [ "$downloaded" -lt "$total_download" ]; do
downloaded=0
for output in $@; do
- size=$(stat -c %s $output)
+ size=$(stat -t $output | cut -d" " -f2)
downloaded=$((downloaded+size))
done