From 78ca85eaffbd8183e215e14dda162ab0655c0dd1 Mon Sep 17 00:00:00 2001 From: Override-6 Date: Sun, 4 Dec 2022 17:58:59 +0100 Subject: [PATCH] drone script fixes --- drone/deploy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drone/deploy.sh b/drone/deploy.sh index 22bc7ce..7d191ab 100644 --- a/drone/deploy.sh +++ b/drone/deploy.sh @@ -19,7 +19,7 @@ fi if [ "$PROD_PID" ]; then #will cause the old server to gracefully shutdown echo "shutting down old server version ..." - kill -s SIGINT "$PROD_PID" + kill "$PROD_PID" while [ ! "$(prod_pid)" ]; do sleep 1; done #sleep until process ends fi