fixed bug with envs due to the use of a wrong function
parent
d3a8c7f13b
commit
eca6e69af1
|
@ -191,7 +191,7 @@ _export_envs() {
|
||||||
IFS=$(printf '\n')
|
IFS=$(printf '\n')
|
||||||
echo "$_env_list" | yq e -r 'to_entries | .[] | .key + "=" + .value' | while IFS='=' read -r _key _value; do
|
echo "$_env_list" | yq e -r 'to_entries | .[] | .key + "=" + .value' | while IFS='=' read -r _key _value; do
|
||||||
_value=$(eval echo "$_value")
|
_value=$(eval echo "$_value")
|
||||||
_savedomainconf "$_key" "$_value"
|
_savedeployconf "$_key" "$_value"
|
||||||
_secure_debug3 "Saved $_key" "$_value"
|
_secure_debug3 "Saved $_key" "$_value"
|
||||||
done
|
done
|
||||||
IFS=$OLDIFS
|
IFS=$OLDIFS
|
||||||
|
|
Loading…
Reference in New Issue