Browse Source
Merge pull request #2753 from nobbs/fix_docker_deploy
Fix error on docker deploy command with spaces.
pull/2754/head
neil
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
acme.sh
|
|
@ -2166,7 +2166,7 @@ _getdeployconf() { |
|
|
|
return 0 # do nothing |
|
|
|
fi |
|
|
|
_saved=$(_readdomainconf "SAVED_$_rac_key") |
|
|
|
eval "export $_rac_key=$_saved" |
|
|
|
eval "export $_rac_key=\"$_saved\"" |
|
|
|
} |
|
|
|
|
|
|
|
#_saveaccountconf key value base64encode |
|
|
|