fix shellcheck errors
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Simon Vieille 2022-12-31 13:36:29 +01:00
parent db1bf0d72e
commit ed00ae1432
Signed by: deblan
GPG key ID: 579388D585F70417

View file

@ -31,7 +31,7 @@ check_pid() {
PID=$1
LOOP=$2
for i in $(seq 1 "$LOOP"); do
for _ in $(seq 1 "$LOOP"); do
test -d "/proc/$PID/" && sleep 1 || STATUS=0
done