Skip to content

Commit 31ec2d8

Browse files
committed
fix: loop in local script
1 parent b979b5d commit 31ec2d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docker-compose/local/lps-env.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ docker compose --env-file "$ENV_FILE" -f docker-compose.yml -f docker-compose.lp
172172
docker compose --env-file "$ENV_FILE" -f docker-compose.yml -f docker-compose.lps.yml up -d lps
173173

174174
FAIL=true
175-
for ((i=1;i<=10;i++));
175+
for _ in $(seq 1 10);
176176
do
177177
sleep 5
178178
curl -s "http://localhost:8080/health" \

0 commit comments

Comments
 (0)