fix bug _getdeployconf not able to read saved values containing spaces

This commit is contained in:
dharp 2023-02-17 15:05:19 -06:00
parent d4befeb536
commit 6470b0e095

View File

@ -2398,7 +2398,7 @@ _getdeployconf() {
return 0 # do nothing return 0 # do nothing
fi fi
_saved="$(_readdomainconf "SAVED_$_rac_key")" _saved="$(_readdomainconf "SAVED_$_rac_key")"
eval $_rac_key="$_saved" eval $_rac_key="\"$_saved\""
export $_rac_key export $_rac_key
} }