From 32c44514f6f24cfc600292fc8252451ae6337697 Mon Sep 17 00:00:00 2001 From: cuqmbr Date: Thu, 12 Dec 2024 11:53:52 +0200 Subject: [PATCH] fix initial deployment --- cron-continuous-deployment.sh | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/cron-continuous-deployment.sh b/cron-continuous-deployment.sh index c6257d5..9520b0b 100644 --- a/cron-continuous-deployment.sh +++ b/cron-continuous-deployment.sh @@ -34,14 +34,20 @@ deploy() { ln -snfv ${GIT_REPO_PATH}/public ${DEPLOY_PATH} } + +# Initial deployment + if [ ! -d ${GIT_REPO_PATH} ]; then git clone --recurse-submodules 'https://gitea.cuqmbr.xyz/cuqmbr/cuqmbr.xyz.git' ${GIT_REPO_PATH} + cd ${GIT_REPO_PATH} build deploy exit 0 fi -start_dir=$(pwd) + +# Periodic updates + cd ${GIT_REPO_PATH} git remote update @@ -54,5 +60,3 @@ if [ "$LOCAL_COMMIT" != "$REMOTE_COMMIT" ]; then build deploy fi - -cd "${start_dir}"