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

This commit is contained in:
Simon Vieille 2023-01-01 11:52:13 +01:00
parent dd06a74bc4
commit 82400de042
Signed by: deblan
GPG key ID: 579388D585F70417

View file

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