* MOD: cleanup
Test stage / check and test (push) Failing after 6s

Signed-off-by: Uwe Hermann <uh@uleenucks.de>
This commit is contained in:
2024-01-21 09:11:07 +01:00
parent 6044c5a4c0
commit 912864c229
+1 -1
View File
@@ -57,7 +57,7 @@ function export_env_file() {
if [[ -f "${ENV_FILE}" ]]; then if [[ -f "${ENV_FILE}" ]]; then
echo "find \"${ENV_FILE}\" file and export variables" echo "find \"${ENV_FILE}\" file and export variables"
set -a set -a
source <(cat "${ENV_FILE}" | sed -e '/^#/d;/^\s*$/d' -e 's/\(\w*\)[ \t]*=[ \t]*\(.*\)/DOTENV_\1=\2/') source <(sed -e '/^#/d;/^\s*$/d' -e 's/\(\w*\)[ \t]*=[ \t]*\(.*\)/DOTENV_\1=\2/' "${ENV_FILE}")
set +a set +a
fi fi
} }