diff options
Diffstat (limited to 'src/util.sh')
-rw-r--r-- | src/util.sh | 2 |
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 |