Browse Source

Merge pull request #1201 from hmb/dev

fix bug in the --ca-bundle param of passing -f to _readlink
pull/1206/head
neil 7 years ago
committed by GitHub
parent
commit
97893d293b
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      acme.sh

2
acme.sh

@ -5510,7 +5510,7 @@ _process() {
HTTPS_INSECURE="1" HTTPS_INSECURE="1"
;; ;;
--ca-bundle) --ca-bundle)
_ca_bundle="$(_readlink -f "$2")"
_ca_bundle="$(_readlink "$2")"
CA_BUNDLE="$_ca_bundle" CA_BUNDLE="$_ca_bundle"
shift shift
;; ;;

Loading…
Cancel
Save