Skip to content

Commit 97a594a

Browse files
committed
Add missing space in if condition.
1 parent d2122f8 commit 97a594a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/v-add-letsencrypt-domain

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ else
114114
fi
115115

116116
# Check if dns records exist for requested domain/aliases
117-
if [ "$proto" = "http-01"]; then
117+
if [ "$proto" = "http-01" ]; then
118118
for identifier in $(echo $domain,$aliases |tr ',' '\n' |sort -u); do
119119
if ! nslookup "${identifier}" >/dev/null 2>&1 ; then
120120
check_result $E_NOTEXIST "DNS record for $identifier doesn't exist"

0 commit comments

Comments
 (0)