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}"