chore(steamos-update): Make progress bar more granular and a bit longer

Extends the length of the progress bar and makes it more granular
This commit is contained in:
RJ Trujillo 2023-08-28 19:07:17 -06:00
parent c137d1b7e3
commit 98576177f5

View File

@ -47,10 +47,10 @@ if command -v ublue-update > /dev/null; then
fake_progress() {
local value=0
while [ ! -f '/tmp/upgrade-check' ]; do
sleep 5
sleep 3
if [ ${value} -lt '100' ]; then
echo ${value}'%'
value=$(( value + 3 ))
value=$(( value + 1 ))
fi
done
echo 100%