[Dev] Do not display ps output in deployer
This commit is contained in:
parent
cde881f1b8
commit
048a325166
|
@ -436,7 +436,7 @@ main() (
|
|||
fi
|
||||
pid="$(cat "${deployer_pid}")"
|
||||
rm --force "${deployer_pid}"
|
||||
if ! ps -p "${pid}"; then
|
||||
if ! ps -p "${pid}" >/dev/null; then
|
||||
fail "Deployer process with pid='${pid}' is not running." \
|
||||
"${err_deployer_process_not_running}"
|
||||
fi
|
||||
|
|
Loading…
Reference in New Issue