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

Merge pull request #4410 from kirisakow/patch-1

Trim trailing slash in `--home` argument's value from the get-go to avoid that subsequently created paths contain two adjacent slashes in the middle
parents ecf1f17c 264b9819
...@@ -7496,7 +7496,7 @@ _process() { ...@@ -7496,7 +7496,7 @@ _process() {
shift shift
;; ;;
--home) --home)
export LE_WORKING_DIR="$2" export LE_WORKING_DIR="$(echo "$2" | sed 's|/$||')"
shift shift
;; ;;
--cert-home | --certhome) --cert-home | --certhome)
......
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