Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ruanhaishen
Acme.Sh
Commits
bf50fce5
Commit
bf50fce5
authored
Jan 24, 2023
by
neil
Browse files
fix
https://github.com/acmesh-official/acme.sh/issues/4470
parent
8718b156
Changes
1
Show whitespace changes
Inline
Side-by-side
acme.sh
View file @
bf50fce5
...
@@ -2386,12 +2386,14 @@ _getdeployconf() {
...
@@ -2386,12 +2386,14 @@ _getdeployconf() {
if [ "$_rac_value" ]; then
if [ "$_rac_value" ]; then
if _startswith "$_rac_value" '"' && _endswith "$_rac_value" '"'; then
if _startswith "$_rac_value" '"' && _endswith "$_rac_value" '"'; then
_debug2 "trim quotation marks"
_debug2 "trim quotation marks"
eval "export $_rac_key=$_rac_value"
eval $_rac_key=$_rac_value
export $_rac_key
fi
fi
return 0 # do nothing
return 0 # do nothing
fi
fi
_saved=$(_readdomainconf "SAVED_$_rac_key")
_saved="$(_readdomainconf "SAVED_$_rac_key")"
eval "export $_rac_key=\"\$_saved\""
eval $_rac_key="$_saved"
export $_rac_key
}
}
#_saveaccountconf key value base64encode
#_saveaccountconf key value base64encode
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment