Skip to content
Snippets Groups Projects
Commit ffa621a7 authored by Sam Stephenson's avatar Sam Stephenson
Browse files

Merge pull request #282 from alexstaubo/master

Add -q to curl.
parents a550dec3 77894a28
No related branches found
No related tags found
No related merge requests found
......@@ -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() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment