1
0
mirror of https://github.com/hiskang/acme.sh synced 2025-06-10 17:36:10 +00:00
This commit is contained in:
neilpang 2017-04-04 14:34:23 +08:00
parent fc9649dbc4
commit fd77e463a1

View File

@ -220,7 +220,10 @@ aws_rest() {
_H2="Authorization: $Authorization"
_debug _H2 "$_H2"
url="$AWS_URL/$ep?$qsr"
url="$AWS_URL/$ep"
if [ "$qsr" ]; then
url="$AWS_URL/$ep?$qsr"
fi
if [ "$mtd" = "GET" ]; then
response="$(_get "$url")"