We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21550cf commit 3334d80Copy full SHA for 3334d80
bin/m
@@ -107,7 +107,7 @@ GET=
107
which wget >/dev/null 2>&1 && GET="wget -q -O-"
108
109
# curl support
110
-which curl >/dev/null 2>&1 && GET="curl -s -L"
+which curl >/dev/null 2>&1 && GET="curl -s -S -L"
111
112
# Ensure we have curl or wget
113
@@ -208,7 +208,7 @@ get_all_versions() {
208
209
if [ -z "$all_versions" ]; then
210
debug "get_all_versions(): $GET $src_url"
211
- all_versions=`$GET 2> /dev/null $src_url`
+ all_versions=`$GET $src_url`
212
if [ $CACHE ]; then
213
debug "Creating cache: $CACHE_SRC"
214
echo "$all_versions" > $CACHE_SRC
0 commit comments