From e8dbb4f7e0d1e54f03b7f6db5caa65b1b3b460ca Mon Sep 17 00:00:00 2001 From: Andrew Gunnerson Date: Thu, 26 Mar 2026 11:57:39 -0400 Subject: [PATCH] start-local-podman: Fix loading .env in success() create_installation_folder() will cd to the data directory for the duration of the script, so .env is actually in the cwd. Signed-off-by: Andrew Gunnerson --- start-local-podman.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/start-local-podman.sh b/start-local-podman.sh index f2259ff..7e31d98 100755 --- a/start-local-podman.sh +++ b/start-local-podman.sh @@ -1534,7 +1534,7 @@ success() { fi # Load ES_LOCAL_API_KEY environment variable. - . "$installation_folder/.env" + . ./.env if [ -n "$ES_LOCAL_API_KEY" ]; then echo "🔑 API key: $ES_LOCAL_API_KEY"