Browse Source
Replace the BASH parameter substitution mechanism (unsupported by sh) with standard commands (supported by sh)
pull/4410/head
Kiril Isakov
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
acme.sh
|
@ -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) |
|
|