Browse Source

Merge pull request #546 from Neilpang/comma

Comma
pull/552/head
neil 8 years ago
committed by GitHub
parent
commit
d950f801af
  1. 4
      acme.sh

4
acme.sh

@ -2395,6 +2395,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"

Loading…
Cancel
Save