From e6a2771592fd36f94eecdb590806c91c835222e1 Mon Sep 17 00:00:00 2001 From: einhorn_b Date: Mon, 8 Jan 2024 16:45:53 +0100 Subject: [PATCH] fix bug --- deployment/hetzner_cloud/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deployment/hetzner_cloud/install.sh b/deployment/hetzner_cloud/install.sh index cdde55080..2116e37dd 100755 --- a/deployment/hetzner_cloud/install.sh +++ b/deployment/hetzner_cloud/install.sh @@ -15,7 +15,7 @@ set +o allexport # Load .env or .env.dist if not present # NOTE: all config values will be in process.env when starting # the services and will therefore take precedence over the .env -if [ -f "./.env" ]; then +if [ -f "$SCRIPT_PATH/.env" ]; then set -o allexport source $SCRIPT_PATH/.env set +o allexport