Unverified Commit 97893d29 authored by neil's avatar neil Committed by GitHub
Browse files

Merge pull request #1201 from hmb/dev

fix bug in the --ca-bundle param of passing -f to _readlink
parents 45e21d50 78d1cfb4
...@@ -5510,7 +5510,7 @@ _process() { ...@@ -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
;; ;;
......
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