diff --git a/Library/Homebrew/brew.sh b/Library/Homebrew/brew.sh index 0b0cf52409..e753515c51 100644 --- a/Library/Homebrew/brew.sh +++ b/Library/Homebrew/brew.sh @@ -351,7 +351,7 @@ else if [[ $(numeric "${curl_name_and_version##* }") -lt $(numeric "$HOMEBREW_MINIMUM_CURL_VERSION") ]] then message="Please update your system cURL. -Minimum required version: ${HOMEBREW_MINIMUM_CURL_VERSION}. +Minimum required version: ${HOMEBREW_MINIMUM_CURL_VERSION} Your cURL version: ${curl_name_and_version##* } Your cURL executable: $(type -p $HOMEBREW_CURL)" @@ -376,16 +376,18 @@ Your cURL executable: $(type -p $HOMEBREW_CURL)" IFS=. read -r major minor micro build extra <<< "${git_version_output##* }" if [[ $(numeric "$major.$minor.$micro.$build") -lt $(numeric "$HOMEBREW_MINIMUM_GIT_VERSION") ]] then - if [[ -z $HOMEBREW_GIT_PATH ]]; then - HOMEBREW_FORCE_BREWED_GIT="1" - else - odie <