Fixes #69
This commit is contained in:
Jakob Reiter 2016-03-21 17:12:29 +01:00
parent 40fd3516c4
commit b5ed2fd9f3

View file

@ -177,7 +177,7 @@ case "$1" in
i=0
timeout=10
# Wait for the process to be properly started before exiting
until { cat "$PID_FILE" | xargs kill -0; } >/dev/null 2>&1
until { kill -0 `cat "$PID_FILE"`; } >/dev/null 2>&1
do
sleep 1
i=$(($i + 1))