brew.sh: stop if HOMEBREW_CURL_PATH is too old
This commit is contained in:
parent
6ff307c456
commit
6ba7ace66a
@ -186,8 +186,18 @@ else
|
|||||||
curl_name_and_version="${curl_version_output%% (*}"
|
curl_name_and_version="${curl_version_output%% (*}"
|
||||||
if [[ $(numeric "${curl_name_and_version##* }") -lt $(numeric "$HOMEBREW_MINIMUM_CURL_VERSION") ]]
|
if [[ $(numeric "${curl_name_and_version##* }") -lt $(numeric "$HOMEBREW_MINIMUM_CURL_VERSION") ]]
|
||||||
then
|
then
|
||||||
HOMEBREW_SYSTEM_CURL_TOO_OLD="1"
|
if [[ -z $HOMEBREW_CURL_PATH ]]; then
|
||||||
HOMEBREW_FORCE_BREWED_CURL="1"
|
HOMEBREW_SYSTEM_CURL_TOO_OLD=1
|
||||||
|
HOMEBREW_FORCE_BREWED_CURL=1
|
||||||
|
else
|
||||||
|
odie <<EOS
|
||||||
|
The version of cURL that you provided to Homebrew using HOMEBREW_CURL_PATH is too old.
|
||||||
|
Minimum required version: ${HOMEBREW_MINIMUM_CURL_VERSION}.
|
||||||
|
Your cURL version: ${curl_name_and_version##* }.
|
||||||
|
Please point Homebrew to cURL version ${HOMEBREW_MINIMUM_CURL_VERSION} or newer
|
||||||
|
or unset HOMEBREW_CURL_PATH variable.
|
||||||
|
EOS
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Ensure the system Git is at or newer than the minimum required version.
|
# Ensure the system Git is at or newer than the minimum required version.
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user