Update cleanup.sh

- Increase wait time
This commit is contained in:
Rokib Hasan Sagar 2021-04-12 11:51:43 +06:00 committed by GitHub
parent 51e61a1b50
commit 38f5d34685
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,7 +9,7 @@ fi
export DEBIAN_FRONTEND=noninteractive export DEBIAN_FRONTEND=noninteractive
# Prepare # Prepare
while ((${SECONDS_LEFT:=5} > 0)); do while ((${SECONDS_LEFT:=10} > 0)); do
printf "Please wait %ss ...\n" "${SECONDS_LEFT}" printf "Please wait %ss ...\n" "${SECONDS_LEFT}"
sleep 1 sleep 1
SECONDS_LEFT=$((SECONDS_LEFT - 1)) SECONDS_LEFT=$((SECONDS_LEFT - 1))