mirror of
https://github.com/plantroon/acme.sh.git
synced 2024-11-09 16:01:46 +00:00
Use literal space
Replace [[:space:]] with " "
This commit is contained in:
parent
713b7338ea
commit
864315f6d1
10
acme.sh
10
acme.sh
@ -2002,10 +2002,10 @@ _post() {
|
|||||||
if echo $_WGET | grep -q " -d " 2> /dev/null; then
|
if echo $_WGET | grep -q " -d " 2> /dev/null; then
|
||||||
# Demultiplex wget debug output
|
# Demultiplex wget debug output
|
||||||
cat "$HTTP_HEADER" >&2
|
cat "$HTTP_HEADER" >&2
|
||||||
_sed_i '/^[^[:space:]][^[:space:]]/d; /^[[:space:]]*$/d' "$HTTP_HEADER"
|
_sed_i '/^[^ ][^ ]/d; /^ *$/d' "$HTTP_HEADER"
|
||||||
fi
|
fi
|
||||||
# remove leading whitespaces from header to match curl format
|
# remove leading whitespaces from header to match curl format
|
||||||
_sed_i 's/^[[:space:]][[:space:]]//g' "$HTTP_HEADER"
|
_sed_i 's/^ //g' "$HTTP_HEADER"
|
||||||
else
|
else
|
||||||
_ret="$?"
|
_ret="$?"
|
||||||
_err "Neither curl nor wget is found, can not do $httpmethod."
|
_err "Neither curl nor wget is found, can not do $httpmethod."
|
||||||
@ -2062,17 +2062,17 @@ _get() {
|
|||||||
if echo $_WGET | grep -q " -d " 2> /dev/null; then
|
if echo $_WGET | grep -q " -d " 2> /dev/null; then
|
||||||
# Demultiplex wget debug output
|
# Demultiplex wget debug output
|
||||||
echo "$_wget_out" >&2
|
echo "$_wget_out" >&2
|
||||||
echo "$_wget_out" | sed '/^[^[:space:]][^[:space:]]/d; /^[[:space:]]*$/d; s/^[[:space:]][[:space:]]//g' -
|
echo "$_wget_out" | sed '/^[^ ][^ ]/d; /^ *$/d; s/^ //g' -
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
$_WGET --user-agent="$USER_AGENT" --header "$_H5" --header "$_H4" --header "$_H3" --header "$_H2" --header "$_H1" -S -O - "$url" 2>"$HTTP_HEADER"
|
$_WGET --user-agent="$USER_AGENT" --header "$_H5" --header "$_H4" --header "$_H3" --header "$_H2" --header "$_H1" -S -O - "$url" 2>"$HTTP_HEADER"
|
||||||
if echo $_WGET | grep -q " -d " 2> /dev/null; then
|
if echo $_WGET | grep -q " -d " 2> /dev/null; then
|
||||||
# Demultiplex wget debug output
|
# Demultiplex wget debug output
|
||||||
cat "$HTTP_HEADER" >&2
|
cat "$HTTP_HEADER" >&2
|
||||||
_sed_i '/^[^[:space:]][^[:space:]]/d; /^[[:space:]]*$/d' "$HTTP_HEADER"
|
_sed_i '/^[^ ][^ ]/d; /^ *$/d' "$HTTP_HEADER"
|
||||||
fi
|
fi
|
||||||
# remove leading whitespaces from header to match curl format
|
# remove leading whitespaces from header to match curl format
|
||||||
_sed_i 's/^[[:space:]][[:space:]]//g' "$HTTP_HEADER"
|
_sed_i 's/^ //g' "$HTTP_HEADER"
|
||||||
fi
|
fi
|
||||||
ret=$?
|
ret=$?
|
||||||
if [ "$ret" = "8" ]; then
|
if [ "$ret" = "8" ]; then
|
||||||
|
Loading…
Reference in New Issue
Block a user