diff --git a/Library/Homebrew/brew.sh b/Library/Homebrew/brew.sh index 0b0cf52409e59f9f46139c20caf1bfdd6968b69f..e753515c513c27a1d56cd6741ae6cf09c9c83aab 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 + message="Please update your system Git. +Minimum required version: ${HOMEBREW_MINIMUM_GIT_VERSION}. +Your Git version: $major.$minor.$micro.$build +Your Git executable: $(unset git && type -p $HOMEBREW_GIT)" + if [[ -z $HOMEBREW_GIT_PATH || -z $HOMEBREW_DEVELOPER ]]; then HOMEBREW_FORCE_BREWED_GIT="1" + if [[ -z $HOMEBREW_GIT_WARNING ]]; then + onoe "$message" + HOMEBREW_GIT_WARNING=1 + fi else - odie <<EOS -The version of Git that you provided to Homebrew using HOMEBREW_GIT_PATH is too old. -Minimum required version: ${HOMEBREW_MINIMUM_GIT_VERSION}. -Your Git version: $major.$minor.$micro.$build. -Please point Homebrew to Git ${HOMEBREW_MINIMUM_CURL_VERSION} or newer -or unset HOMEBREW_GIT_PATH variable. -EOS + odie "$message" fi fi @@ -424,6 +426,7 @@ export HOMEBREW_CURL export HOMEBREW_CURL_WARNING export HOMEBREW_SYSTEM_CURL_TOO_OLD export HOMEBREW_GIT +export HOMEBREW_GIT_WARNING export HOMEBREW_MINIMUM_GIT_VERSION export HOMEBREW_PROCESSOR export HOMEBREW_PRODUCT diff --git a/Library/Homebrew/cmd/update.sh b/Library/Homebrew/cmd/update.sh index 3068452a167ad7e1da5c995bd7074ce00258dad8..0688c1889ae35ffb6e25f7ddb4e96290bc79a89b 100644 --- a/Library/Homebrew/cmd/update.sh +++ b/Library/Homebrew/cmd/update.sh @@ -373,7 +373,7 @@ EOS ! -x "$HOMEBREW_PREFIX/opt/curl/bin/curl" ]] then # we cannot install a Homebrew cURL if homebrew/core is unavailable. - if [[ -d "$HOMEBREW_LIBRARY/Taps/homebrew/homebrew-core" ]] && ! brew install curl + if [[ ! -d "$HOMEBREW_LIBRARY/Taps/homebrew/homebrew-core" ]] || ! brew install curl then odie "Curl must be installed and in your PATH!" fi @@ -384,7 +384,7 @@ EOS ! -x "$HOMEBREW_PREFIX/opt/git/bin/git" ]] then # we cannot install a Homebrew Git if homebrew/core is unavailable. - if [[ -d "$HOMEBREW_LIBRARY/Taps/homebrew/homebrew-core" ]] && ! brew install git + if [[ ! -d "$HOMEBREW_LIBRARY/Taps/homebrew/homebrew-core" ]] || ! brew install git then odie "Git must be installed and in your PATH!" fi