Skip to content

Commit 881a01d

Browse files
committed
bypass aliased curl
add nvm_curl to control how curl is executed
1 parent e6fa80c commit 881a01d

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

install.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ nvm_node_version() {
9090

9191
nvm_download() {
9292
if nvm_has "curl"; then
93-
curl --fail --compressed -q "$@"
93+
command curl --fail --compressed -q "$@"
9494
elif nvm_has "wget"; then
9595
# Emulate curl with wget
9696
ARGS=$(nvm_echo "$@" | command sed -e 's/--progress-bar /--progress=bar /' \

nvm.sh

+9-5
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,12 @@ nvm_has_colors() {
8686
[ "${NVM_NUM_COLORS:--1}" -ge 8 ]
8787
}
8888

89+
nvm_curl() {
90+
command curl -q "$@"
91+
}
92+
8993
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"
9195
}
9296

9397
nvm_curl_use_compression() {
@@ -101,7 +105,7 @@ nvm_get_latest() {
101105
if nvm_curl_use_compression; then
102106
CURL_COMPRESSED_FLAG="--compressed"
103107
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)"
105109
elif nvm_has "wget"; then
106110
NVM_LATEST_URL="$(wget -q https://latest.nvm.sh --server-response -O /dev/null 2>&1 | command awk '/^ Location: /{DEST=$2} END{ print DEST }')"
107111
else
@@ -121,7 +125,7 @@ nvm_download() {
121125
if nvm_curl_use_compression; then
122126
CURL_COMPRESSED_FLAG="--compressed"
123127
fi
124-
curl --fail ${CURL_COMPRESSED_FLAG:-} -q "$@"
128+
nvm_curl --fail ${CURL_COMPRESSED_FLAG:-} -q "$@"
125129
elif nvm_has "wget"; then
126130
# Emulate curl with wget
127131
ARGS=$(nvm_echo "$@" | command sed -e 's/--progress-bar /--progress=bar /' \
@@ -465,7 +469,7 @@ nvm_clang_version() {
465469
}
466470

467471
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'
469473
}
470474

471475
nvm_version_greater() {
@@ -3004,7 +3008,7 @@ nvm() {
30043008
nvm_err "awk: not found"
30053009
fi
30063010
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)"
30083012
else
30093013
nvm_err "curl: not found"
30103014
fi

0 commit comments

Comments
 (0)