From b734be405483661a1be7376b98845a53c6259bf3 Mon Sep 17 00:00:00 2001 From: Hyperling Date: Tue, 14 Oct 2025 11:50:50 -0700 Subject: [PATCH] Enable kill mode. --- cronjob.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cronjob.sh b/cronjob.sh index 7ce5b14..79c880f 100755 --- a/cronjob.sh +++ b/cronjob.sh @@ -18,9 +18,9 @@ echo "* Pull status is '$status'." if [[ $status != 0 ]]; then echo "* Site is already up to date, exiting." exit 0 -#else -# # Kill node.js which will complete run.sh and restart any Docker containers. -# pkill node +else + # Kill node.js which will complete run.sh and restart any Docker containers. + pkill node fi exit 0