mirror of
https://github.com/rootzoll/raspiblitz.git
synced 2024-11-20 02:09:15 +01:00
Fix Download.progress file name
Using single quote creates a file named '.${name}.progress' rather than 'Download.progress'
This commit is contained in:
parent
f0a4903d02
commit
65ae2d09c1
@ -72,7 +72,7 @@ while :
|
||||
freshSize=0
|
||||
fi
|
||||
progress=$(echo "scale=2; $freshSize*100/$targetSize" | bc)
|
||||
echo $progress > '.${name}.progress'
|
||||
echo $progress > ".${name}.progress"
|
||||
|
||||
# detect if since last loop any progress occured
|
||||
if [ ${actualSize} -eq ${freshSize} ]; then
|
||||
|
Loading…
Reference in New Issue
Block a user