reduce sleep on file difference check

This commit is contained in:
Heavybullets8 2022-08-10 23:37:53 -06:00
parent 5888efa3d7
commit c1793c5306

View File

@ -216,7 +216,7 @@ if [[ $rollback == "true" || "$startstatus" == "STOPPED" ]]; then
until [[ $while_count -lt $current_count ]] # Wait for a change in the file BEFORE continuing
do
current_count=$(head -n 1 temp.txt)
sleep 2
sleep 1
done
while_count=$current_count
fi