Merge pull request #621 from Neilpang/dev

fix https://github.com/Neilpang/acme.sh/issues/614
This commit is contained in:
neil 2017-02-15 21:09:46 +08:00 committed by GitHub
commit 2527f8f599

View File

@ -994,7 +994,7 @@ _readKeyLengthFromCSR() {
echo "$_outcsr" | _egrep_o "^ *ASN1 OID:.*" | cut -d ':' -f 2 | tr -d ' '
else
_debug "RSA CSR"
echo "$_outcsr" | _egrep_o "^ *Public-Key:.*" | cut -d '(' -f 2 | cut -d ' ' -f 1
echo "$_outcsr" | _egrep_o "^ *Public.Key:.*" | cut -d '(' -f 2 | cut -d ' ' -f 1
fi
}