Browse Source

minor, ignore empty -d value

master
neil 9 years ago
parent
commit
ee1737a52e
  1. 5
      acme.sh

5
acme.sh

@ -2284,7 +2284,8 @@ _process() {
--domain|-d)
_dvalue="$2"
if [ -z "$_dvalue" ] || _startswith "$_dvalue" "-" ; then
if [ "$_dvalue" ] ; then
if _startswith "$_dvalue" "-" ; then
_err "'$_dvalue' is not a valid domain for parameter '$1'"
return 1
fi
@ -2298,6 +2299,8 @@ _process() {
_altdomains="$_altdomains,$_dvalue"
fi
fi
fi
shift
;;

Loading…
Cancel
Save