@@ -86,8 +86,12 @@ nvm_has_colors() {
86
86
[ " ${NVM_NUM_COLORS:- -1} " -ge 8 ]
87
87
}
88
88
89
+ nvm_curl () {
90
+ command curl -q " $@ "
91
+ }
92
+
89
93
nvm_curl_libz_support () {
90
- curl -V 2> /dev/null | nvm_grep " ^Features:" | nvm_grep -q " libz"
94
+ nvm_curl -V 2> /dev/null | nvm_grep " ^Features:" | nvm_grep -q " libz"
91
95
}
92
96
93
97
nvm_curl_use_compression () {
@@ -101,7 +105,7 @@ nvm_get_latest() {
101
105
if nvm_curl_use_compression; then
102
106
CURL_COMPRESSED_FLAG=" --compressed"
103
107
fi
104
- NVM_LATEST_URL=" $( curl ${CURL_COMPRESSED_FLAG:- } -q -w " %{url_effective}\\ n" -L -s -S https://latest.nvm.sh -o /dev/null) "
108
+ NVM_LATEST_URL=" $( nvm_curl ${CURL_COMPRESSED_FLAG:- } -q -w " %{url_effective}\\ n" -L -s -S https://latest.nvm.sh -o /dev/null) "
105
109
elif nvm_has " wget" ; then
106
110
NVM_LATEST_URL=" $( wget -q https://latest.nvm.sh --server-response -O /dev/null 2>&1 | command awk ' /^ Location: /{DEST=$2} END{ print DEST }' ) "
107
111
else
@@ -121,7 +125,7 @@ nvm_download() {
121
125
if nvm_curl_use_compression; then
122
126
CURL_COMPRESSED_FLAG=" --compressed"
123
127
fi
124
- curl --fail ${CURL_COMPRESSED_FLAG:- } -q " $@ "
128
+ nvm_curl --fail ${CURL_COMPRESSED_FLAG:- } -q " $@ "
125
129
elif nvm_has " wget" ; then
126
130
# Emulate curl with wget
127
131
ARGS=$( nvm_echo " $@ " | command sed -e ' s/--progress-bar /--progress=bar /' \
@@ -465,7 +469,7 @@ nvm_clang_version() {
465
469
}
466
470
467
471
nvm_curl_version () {
468
- curl -V | command awk ' { if ($1 == "curl") print $2 }' | command sed ' s/-.*$//g'
472
+ nvm_curl -V | command awk ' { if ($1 == "curl") print $2 }' | command sed ' s/-.*$//g'
469
473
}
470
474
471
475
nvm_version_greater () {
@@ -3004,7 +3008,7 @@ nvm() {
3004
3008
nvm_err " awk: not found"
3005
3009
fi
3006
3010
if nvm_has " curl" ; then
3007
- nvm_err " curl: $( nvm_command_info curl) , $( command curl -V | command head -n 1) "
3011
+ nvm_err " curl: $( nvm_command_info curl) , $( nvm_curl -V | command head -n 1) "
3008
3012
else
3009
3013
nvm_err " curl: not found"
3010
3014
fi
0 commit comments