diff --git a/backend/services/presence-service/deploy.sh b/backend/services/presence-service/deploy.sh index 3288f4e4..53453270 100644 --- a/backend/services/presence-service/deploy.sh +++ b/backend/services/presence-service/deploy.sh @@ -61,7 +61,7 @@ case "$1" in log_success "$SERVICE_NAME started" log_info "Waiting for service to be healthy..." sleep 5 - $0 health + bash "$SCRIPT_DIR/deploy.sh" health ;; start-deps) @@ -86,8 +86,8 @@ case "$1" in ;; restart) - $0 stop - $0 start + bash "$SCRIPT_DIR/deploy.sh" stop + bash "$SCRIPT_DIR/deploy.sh" start ;; up)