fixed bug with envs due to the use of a wrong function

This commit is contained in:
tomo
2025-05-27 22:07:22 +02:00
committed by neil
parent c1c49d5a01
commit a55d40be97

View File

@@ -191,7 +191,7 @@ _export_envs() {
IFS=$(printf '\n')
echo "$_env_list" | yq e -r 'to_entries | .[] | .key + "=" + .value' | while IFS='=' read -r _key _value; do
_value=$(eval echo "$_value")
_savedomainconf "$_key" "$_value"
_savedeployconf "$_key" "$_value"
_secure_debug3 "Saved $_key" "$_value"
done
IFS=$OLDIFS