From 684c237ac1f5a121fe5803f6ee57cc2dd93c4ef4 Mon Sep 17 00:00:00 2001 From: Hyperling Date: Tue, 14 Oct 2025 13:57:33 -0700 Subject: [PATCH] Remove excess exit and provide output var in case it's helpful in later debugging. --- cronjob.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/cronjob.sh b/cronjob.sh index d82df5e..2605c9d 100755 --- a/cronjob.sh +++ b/cronjob.sh @@ -52,8 +52,7 @@ elif [[ $git_status == 0 && ($main_changed == 0 || $run_changed == 0) ]]; then elif [[ $git_status == 0 && $grep_status == 0 ]]; then reload-project elif [[ $git_status == 0 && $grep_status != 0 ]]; then - log "Site is already up to date, exiting." - exit 0 + log "Nothing to do. '$output'" else log "*** WARNING: Unknown Situation ***" fi