Commit 77894a28 by Alexander Staubo

Pass -q to curl to avoid loading user's potentially conflicting .curlrc. Related to #244.

parent a550dec3
...@@ -201,11 +201,11 @@ http() { ...@@ -201,11 +201,11 @@ http() {
} }
http_head_curl() { http_head_curl() {
curl -sILf "$1" >&4 2>&1 curl -qsILf "$1" >&4 2>&1
} }
http_get_curl() { http_get_curl() {
curl -sSLf "$1" curl -qsSLf "$1"
} }
http_head_wget() { http_head_wget() {
......
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