mirror of
https://github.com/certbot/certbot.git
synced 2026-05-28 04:34:11 -04:00
fix logic problem
This commit is contained in:
parent
f1fe121080
commit
a700f85741
1 changed files with 1 additions and 1 deletions
|
|
@ -17,7 +17,7 @@ certbot_test () {
|
|||
}
|
||||
|
||||
# Use local ACMEv2 endpoint if requested and SERVER isn't already set.
|
||||
if [ "${BOULDER_INTEGRATION:-v1}" = "v2" -a -n "${SERVER:+x}" ]; then
|
||||
if [ "${BOULDER_INTEGRATION:-v1}" = "v2" -a -z "${SERVER:+x}" ]; then
|
||||
SERVER="http://localhost:4001/directory"
|
||||
fi
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue