Don't source local .env file on build

This commit is contained in:
Jon Staab
2025-11-04 09:18:26 -08:00
parent d980f36246
commit b62b1bc063
-4
View File
@@ -6,10 +6,6 @@ if [ -f .env.template ]; then
source .env.template
fi
if [ -f .env ]; then
source .env
fi
# Avoid overwriting env vars provided directly
# https://stackoverflow.com/a/69127685/1467342
eval "$temp_env"