Unverified Commit 264b9819 authored by Kiril Isakov's avatar Kiril Isakov Committed by GitHub
Browse files

Replace the BASH parameter substitution mechanism (unsupported by sh) with...

Replace the BASH parameter substitution mechanism (unsupported by sh) with standard commands (supported by sh)
parent 9f942a6b
...@@ -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