Commit a8ab028b authored by neil's avatar neil Committed by GitHub
Browse files

Merge pull request #545 from Neilpang/comma

fix comma in domain
parents 6489a48e 2aff36e7
......@@ -2391,6 +2391,10 @@ issue() {
Le_Webroot="$1"
Le_Domain="$2"
Le_Alt="$3"
if _contains "$Le_Domain" ","; then
Le_Domain=$(echo "$2,$3" | cut -d , -f 1)
Le_Alt=$(echo "$2,$3" | cut -d , -f 2- | sed "s/,${NO_VALUE}$//")
fi
Le_Keylength="$4"
Le_RealCertPath="$5"
Le_RealKeyPath="$6"
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment