From b5ae8700873a105ae33667a2541bd84a044e38ed Mon Sep 17 00:00:00 2001 From: Goutham Pratapa Date: Mon, 27 May 2024 17:17:37 +0530 Subject: [PATCH] [ops]: add warning for custom APPSMITH_GIT_ROOT (#33355) --- deploy/docker/fs/opt/appsmith/run-with-env.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/deploy/docker/fs/opt/appsmith/run-with-env.sh b/deploy/docker/fs/opt/appsmith/run-with-env.sh index a70c893525..540e363161 100755 --- a/deploy/docker/fs/opt/appsmith/run-with-env.sh +++ b/deploy/docker/fs/opt/appsmith/run-with-env.sh @@ -30,6 +30,8 @@ fi if [[ -z "${APPSMITH_GIT_ROOT:-}" ]]; then export APPSMITH_GIT_ROOT=/appsmith-stacks/git-storage +else + echo "WARNING: It appears a custom value has been configured for APPSMITH_GIT_ROOT. This behaviour is deprecated and will soon be removed." fi mkdir -pv "$APPSMITH_GIT_ROOT"