From 49835fc453fbc09852e9bbee76ae00aaf675eaa9 Mon Sep 17 00:00:00 2001 From: Mike Liao Date: Tue, 29 Oct 2024 20:15:48 -0700 Subject: [PATCH] fix CODEBASE_ROOT for content deploy.sh --- sites/content/deploy/deploy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sites/content/deploy/deploy.sh b/sites/content/deploy/deploy.sh index af33080..8a7f029 100755 --- a/sites/content/deploy/deploy.sh +++ b/sites/content/deploy/deploy.sh @@ -27,7 +27,7 @@ fi if git rev-parse --git-dir > /dev/null 2>&1; then # git repo! GIT_REPO_ROOT=$(git rev-parse --show-toplevel) - CODEBASE_ROOT=$GIT_REPO_ROOT/apps/$APP_NAME + CODEBASE_ROOT=$GIT_REPO_ROOT/app/$APP_NAME WORKING_DIR=$GIT_REPO_ROOT/sites/$APP_NAME/deploy else # NOT a git repo!