1
0
mirror of https://github.com/postgrespro/pg_probackup.git synced 2024-11-28 09:33:54 +02:00

Fix lt/gt.

This commit is contained in:
stalkerg 2016-03-25 16:03:28 +03:00
parent 3d140a7fb9
commit 6de1d6f053

View File

@ -41,7 +41,7 @@ fi
counter=0
while [[ `pg_arman show -B ${BACKUP_PATH}` == *"RUNNING"* ]]
do
if [ $counter -lt 30 ] ; then
if [ $counter -gt 30 ] ; then
break
fi
sleep 2