Commit 77894a28 authored by Alexander Staubo's avatar Alexander Staubo
Browse files

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

parent a550dec3
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -201,11 +201,11 @@ http() {
}

http_head_curl() {
  curl -sILf "$1" >&4 2>&1
  curl -qsILf "$1" >&4 2>&1
}

http_get_curl() {
  curl -sSLf "$1"
  curl -qsSLf "$1"
}

http_head_wget() {