mirror of
https://gitee.com/ineo6/homebrew-install.git
synced 2025-04-06 03:58:05 +08:00
feat: 更新脚本
This commit is contained in:
parent
312c30c93c
commit
806419d447
@ -112,15 +112,17 @@ OS="$(uname)"
|
|||||||
if [[ "${OS}" == "Linux" ]]
|
if [[ "${OS}" == "Linux" ]]
|
||||||
then
|
then
|
||||||
HOMEBREW_ON_LINUX=1
|
HOMEBREW_ON_LINUX=1
|
||||||
elif [[ "${OS}" != "Darwin" ]]
|
elif [[ "${OS}" == "Darwin" ]]
|
||||||
then
|
then
|
||||||
|
HOMEBREW_ON_MACOS=1
|
||||||
|
else
|
||||||
abort "Homebrew is only supported on macOS and Linux."
|
abort "Homebrew is only supported on macOS and Linux."
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Required installation paths. To install elsewhere (which is unsupported)
|
# Required installation paths. To install elsewhere (which is unsupported)
|
||||||
# you can untar https://github.com/Homebrew/brew/tarball/master
|
# you can untar https://github.com/Homebrew/brew/tarball/master
|
||||||
# anywhere you like.
|
# anywhere you like.
|
||||||
if [[ -z "${HOMEBREW_ON_LINUX-}" ]]
|
if [[ -n "${HOMEBREW_ON_MACOS-}" ]]
|
||||||
then
|
then
|
||||||
UNAME_MACHINE="$(/usr/bin/uname -m)"
|
UNAME_MACHINE="$(/usr/bin/uname -m)"
|
||||||
|
|
||||||
@ -146,9 +148,9 @@ then
|
|||||||
else
|
else
|
||||||
UNAME_MACHINE="$(uname -m)"
|
UNAME_MACHINE="$(uname -m)"
|
||||||
|
|
||||||
# On Linux, it installs to /home/linuxbrew/.linuxbrew if you have sudo access
|
# On Linux, this script installs to /home/linuxbrew/.linuxbrew only
|
||||||
# and ~/.linuxbrew (which is unsupported) if run interactively.
|
HOMEBREW_PREFIX="/home/linuxbrew/.linuxbrew"
|
||||||
HOMEBREW_PREFIX_DEFAULT="/home/linuxbrew/.linuxbrew"
|
HOMEBREW_REPOSITORY="${HOMEBREW_PREFIX}/Homebrew"
|
||||||
HOMEBREW_CACHE="${HOME}/.cache/Homebrew"
|
HOMEBREW_CACHE="${HOME}/.cache/Homebrew"
|
||||||
|
|
||||||
STAT_PRINTF=("stat" "--printf")
|
STAT_PRINTF=("stat" "--printf")
|
||||||
@ -179,9 +181,9 @@ fi
|
|||||||
export HOMEBREW_{BREW,CORE}_GIT_REMOTE
|
export HOMEBREW_{BREW,CORE}_GIT_REMOTE
|
||||||
|
|
||||||
# TODO: bump version when new macOS is released or announced
|
# TODO: bump version when new macOS is released or announced
|
||||||
MACOS_NEWEST_UNSUPPORTED="13.0"
|
MACOS_NEWEST_UNSUPPORTED="14.0"
|
||||||
# TODO: bump version when new macOS is released
|
# TODO: bump version when new macOS is released
|
||||||
MACOS_OLDEST_SUPPORTED="10.15"
|
MACOS_OLDEST_SUPPORTED="11.0"
|
||||||
|
|
||||||
# For Homebrew on Linux
|
# For Homebrew on Linux
|
||||||
REQUIRED_RUBY_VERSION=2.6 # https://github.com/Homebrew/brew/pull/6556
|
REQUIRED_RUBY_VERSION=2.6 # https://github.com/Homebrew/brew/pull/6556
|
||||||
@ -221,7 +223,7 @@ have_sudo_access() {
|
|||||||
HAVE_SUDO_ACCESS="$?"
|
HAVE_SUDO_ACCESS="$?"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ -z "${HOMEBREW_ON_LINUX-}" ]] && [[ "${HAVE_SUDO_ACCESS}" -ne 0 ]]
|
if [[ -n "${HOMEBREW_ON_MACOS-}" ]] && [[ "${HAVE_SUDO_ACCESS}" -ne 0 ]]
|
||||||
then
|
then
|
||||||
abort "Need sudo access on macOS (e.g. the user ${USER} needs to be an Administrator)!"
|
abort "Need sudo access on macOS (e.g. the user ${USER} needs to be an Administrator)!"
|
||||||
fi
|
fi
|
||||||
@ -507,41 +509,25 @@ fi
|
|||||||
# shellcheck disable=SC2016
|
# shellcheck disable=SC2016
|
||||||
ohai 'Checking for `sudo` access (which may request your password)...'
|
ohai 'Checking for `sudo` access (which may request your password)...'
|
||||||
|
|
||||||
if [[ -z "${HOMEBREW_ON_LINUX-}" ]]
|
if [[ -n "${HOMEBREW_ON_MACOS-}" ]]
|
||||||
then
|
then
|
||||||
have_sudo_access
|
have_sudo_access
|
||||||
else
|
elif ! [[ -w "${HOMEBREW_PREFIX}" ]] &&
|
||||||
if [[ -w "${HOMEBREW_PREFIX_DEFAULT}" ]] ||
|
! [[ -w "/home/linuxbrew" ]] &&
|
||||||
[[ -w "/home/linuxbrew" ]] ||
|
! [[ -w "/home" ]] &&
|
||||||
[[ -w "/home" ]]
|
! have_sudo_access
|
||||||
then
|
then
|
||||||
HOMEBREW_PREFIX="${HOMEBREW_PREFIX_DEFAULT}"
|
abort "$(
|
||||||
elif [[ -n "${NONINTERACTIVE-}" ]]
|
cat <<EOABORT
|
||||||
then
|
Insufficient permissions to install Homebrew to \"${HOMEBREW_PREFIX}\" (the default prefix).
|
||||||
if have_sudo_access
|
|
||||||
then
|
Alternative (unsupported) installation methods are available at:
|
||||||
HOMEBREW_PREFIX="${HOMEBREW_PREFIX_DEFAULT}"
|
https://docs.brew.sh/Installation#alternative-installs
|
||||||
else
|
|
||||||
abort "Insufficient permissions to install Homebrew to \"${HOMEBREW_PREFIX_DEFAULT}\"."
|
Please note this will require most formula to build from source, a buggy, slow and energy-inefficient experience.
|
||||||
fi
|
We will close any issues without response for these unsupported configurations.
|
||||||
else
|
EOABORT
|
||||||
trap exit SIGINT
|
)"
|
||||||
if ! /usr/bin/sudo -n -v &>/dev/null
|
|
||||||
then
|
|
||||||
ohai "Select a Homebrew installation directory:"
|
|
||||||
echo "- ${tty_bold}Enter your password${tty_reset} to install to ${tty_underline}${HOMEBREW_PREFIX_DEFAULT}${tty_reset} (${tty_bold}recommended${tty_reset})"
|
|
||||||
echo "- ${tty_bold}Press Control-D${tty_reset} to install to ${tty_underline}${HOME}/.linuxbrew${tty_reset}"
|
|
||||||
echo "- ${tty_bold}Press Control-C${tty_reset} to cancel installation"
|
|
||||||
fi
|
|
||||||
if have_sudo_access
|
|
||||||
then
|
|
||||||
HOMEBREW_PREFIX="${HOMEBREW_PREFIX_DEFAULT}"
|
|
||||||
else
|
|
||||||
HOMEBREW_PREFIX="${HOME}/.linuxbrew"
|
|
||||||
fi
|
|
||||||
trap - SIGINT
|
|
||||||
fi
|
|
||||||
HOMEBREW_REPOSITORY="${HOMEBREW_PREFIX}/Homebrew"
|
|
||||||
fi
|
fi
|
||||||
HOMEBREW_CORE="${HOMEBREW_REPOSITORY}/Library/Taps/homebrew/homebrew-core"
|
HOMEBREW_CORE="${HOMEBREW_REPOSITORY}/Library/Taps/homebrew/homebrew-core"
|
||||||
|
|
||||||
@ -559,7 +545,7 @@ EOABORT
|
|||||||
)"
|
)"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ -z "${HOMEBREW_ON_LINUX-}" ]]
|
if [[ -n "${HOMEBREW_ON_MACOS-}" ]]
|
||||||
then
|
then
|
||||||
# On macOS, support 64-bit Intel and ARM
|
# On macOS, support 64-bit Intel and ARM
|
||||||
if [[ "${UNAME_MACHINE}" != "arm64" ]] && [[ "${UNAME_MACHINE}" != "x86_64" ]]
|
if [[ "${UNAME_MACHINE}" != "arm64" ]] && [[ "${UNAME_MACHINE}" != "x86_64" ]]
|
||||||
@ -573,8 +559,7 @@ else
|
|||||||
abort "$(
|
abort "$(
|
||||||
cat <<EOABORT
|
cat <<EOABORT
|
||||||
Homebrew on Linux is not supported on ARM processors.
|
Homebrew on Linux is not supported on ARM processors.
|
||||||
You can try an alternate installation method instead:
|
${tty_underline}https://docs.brew.sh/Homebrew-on-Linux#arm-unsupported${tty_reset}
|
||||||
${tty_underline}https://docs.brew.sh/Homebrew-on-Linux#arm${tty_reset}
|
|
||||||
EOABORT
|
EOABORT
|
||||||
)"
|
)"
|
||||||
elif [[ "${UNAME_MACHINE}" != "x86_64" ]]
|
elif [[ "${UNAME_MACHINE}" != "x86_64" ]]
|
||||||
@ -583,7 +568,7 @@ EOABORT
|
|||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ -z "${HOMEBREW_ON_LINUX-}" ]]
|
if [[ -n "${HOMEBREW_ON_MACOS-}" ]]
|
||||||
then
|
then
|
||||||
macos_version="$(major_minor "$(/usr/bin/sw_vers -productVersion)")"
|
macos_version="$(major_minor "$(/usr/bin/sw_vers -productVersion)")"
|
||||||
if version_lt "${macos_version}" "10.7"
|
if version_lt "${macos_version}" "10.7"
|
||||||
@ -769,10 +754,10 @@ then
|
|||||||
additional_shellenv_commands+=("export HOMEBREW_CORE_GIT_REMOTE=\"${HOMEBREW_CORE_GIT_REMOTE}\"")
|
additional_shellenv_commands+=("export HOMEBREW_CORE_GIT_REMOTE=\"${HOMEBREW_CORE_GIT_REMOTE}\"")
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ -n "${HOMEBREW_INSTALL_FROM_API-}" ]]
|
if [[ -n "${HOMEBREW_NO_INSTALL_FROM_API-}" ]]
|
||||||
then
|
then
|
||||||
ohai "HOMEBREW_INSTALL_FROM_API is set."
|
ohai "HOMEBREW_NO_INSTALL_FROM_API is set."
|
||||||
echo "Homebrew/homebrew-core will not be tapped during this ${tty_bold}install${tty_reset} run."
|
echo "Homebrew/homebrew-core will be tapped during this ${tty_bold}install${tty_reset} run."
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ -z "${NONINTERACTIVE-}" ]]
|
if [[ -z "${NONINTERACTIVE-}" ]]
|
||||||
@ -827,7 +812,7 @@ execute_sudo "${CHOWN[@]}" "-R" "${USER}:${GROUP}" "${HOMEBREW_REPOSITORY}"
|
|||||||
|
|
||||||
if ! [[ -d "${HOMEBREW_CACHE}" ]]
|
if ! [[ -d "${HOMEBREW_CACHE}" ]]
|
||||||
then
|
then
|
||||||
if [[ -z "${HOMEBREW_ON_LINUX-}" ]]
|
if [[ -n "${HOMEBREW_ON_MACOS-}" ]]
|
||||||
then
|
then
|
||||||
execute_sudo "${MKDIR[@]}" "${HOMEBREW_CACHE}"
|
execute_sudo "${MKDIR[@]}" "${HOMEBREW_CACHE}"
|
||||||
else
|
else
|
||||||
@ -879,13 +864,13 @@ fi
|
|||||||
if should_install_command_line_tools && test -t 0
|
if should_install_command_line_tools && test -t 0
|
||||||
then
|
then
|
||||||
ohai "Installing the Command Line Tools (expect a GUI popup):"
|
ohai "Installing the Command Line Tools (expect a GUI popup):"
|
||||||
execute_sudo "/usr/bin/xcode-select" "--install"
|
execute "/usr/bin/xcode-select" "--install"
|
||||||
echo "Press any key when the installation has completed."
|
echo "Press any key when the installation has completed."
|
||||||
getc
|
getc
|
||||||
execute_sudo "/usr/bin/xcode-select" "--switch" "/Library/Developer/CommandLineTools"
|
execute_sudo "/usr/bin/xcode-select" "--switch" "/Library/Developer/CommandLineTools"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ -z "${HOMEBREW_ON_LINUX-}" ]] && ! output="$(/usr/bin/xcrun clang 2>&1)" && [[ "${output}" == *"license"* ]]
|
if [[ -n "${HOMEBREW_ON_MACOS-}" ]] && ! output="$(/usr/bin/xcrun clang 2>&1)" && [[ "${output}" == *"license"* ]]
|
||||||
then
|
then
|
||||||
abort "$(
|
abort "$(
|
||||||
cat <<EOABORT
|
cat <<EOABORT
|
||||||
@ -902,14 +887,17 @@ ohai "Downloading and installing Homebrew..."
|
|||||||
cd "${HOMEBREW_REPOSITORY}" >/dev/null || return
|
cd "${HOMEBREW_REPOSITORY}" >/dev/null || return
|
||||||
|
|
||||||
# we do it in four steps to avoid merge errors when reinstalling
|
# we do it in four steps to avoid merge errors when reinstalling
|
||||||
execute "git" "init" "-q"
|
execute "git" "-c" "init.defaultBranch=master" "init" "--quiet"
|
||||||
|
|
||||||
# "git remote add" will fail if the remote is defined in the global config
|
# "git remote add" will fail if the remote is defined in the global config
|
||||||
execute "git" "config" "remote.origin.url" "${HOMEBREW_BREW_GIT_REMOTE}"
|
execute "git" "config" "remote.origin.url" "${HOMEBREW_BREW_GIT_REMOTE}"
|
||||||
execute "git" "config" "remote.origin.fetch" "+refs/heads/*:refs/remotes/origin/*"
|
execute "git" "config" "remote.origin.fetch" "+refs/heads/*:refs/remotes/origin/*"
|
||||||
|
|
||||||
# ensure we don't munge line endings on checkout
|
# ensure we don't munge line endings on checkout
|
||||||
execute "git" "config" "core.autocrlf" "false"
|
execute "git" "config" "--bool" "core.autocrlf" "false"
|
||||||
|
|
||||||
|
# make sure symlinks are saved as-is
|
||||||
|
execute "git" "config" "--bool" "core.symlinks" "true"
|
||||||
|
|
||||||
execute "git" "fetch" "--force" "origin"
|
execute "git" "fetch" "--force" "origin"
|
||||||
execute "git" "fetch" "--force" "--tags" "origin"
|
execute "git" "fetch" "--force" "--tags" "origin"
|
||||||
@ -926,26 +914,20 @@ ohai "Downloading and installing Homebrew..."
|
|||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ -n "${HOMEBREW_INSTALL_FROM_API-}" ]]
|
if [[ -n "${HOMEBREW_NO_INSTALL_FROM_API-}" && ! -d "${HOMEBREW_CORE}" ]]
|
||||||
then
|
then
|
||||||
|
# Always use single-quoted strings with `exp` expressions
|
||||||
# shellcheck disable=SC2016
|
# shellcheck disable=SC2016
|
||||||
ohai 'Skip tapping homebrew/core because `$HOMEBREW_INSTALL_FROM_API` is set.'
|
ohai 'Tapping homebrew/core because `$HOMEBREW_NO_INSTALL_FROM_API` is set.'
|
||||||
# Unset HOMEBREW_DEVELOPER since it is no longer needed and causes warnings during brew update below
|
|
||||||
if [[ -n "${HOMEBREW_ON_LINUX-}" && (-n "${HOMEBREW_CURL_PATH-}" || -n "${HOMEBREW_GIT_PATH-}") ]]
|
|
||||||
then
|
|
||||||
export -n HOMEBREW_DEVELOPER
|
|
||||||
fi
|
|
||||||
elif [[ ! -d "${HOMEBREW_CORE}" ]]
|
|
||||||
then
|
|
||||||
ohai "Tapping homebrew/core"
|
|
||||||
(
|
(
|
||||||
execute "${MKDIR[@]}" "${HOMEBREW_CORE}"
|
execute "${MKDIR[@]}" "${HOMEBREW_CORE}"
|
||||||
cd "${HOMEBREW_CORE}" >/dev/null || return
|
cd "${HOMEBREW_CORE}" >/dev/null || return
|
||||||
|
|
||||||
execute "git" "init" "-q"
|
execute "git" "-c" "init.defaultBranch=master" "init" "--quiet"
|
||||||
execute "git" "config" "remote.origin.url" "${HOMEBREW_CORE_GIT_REMOTE}"
|
execute "git" "config" "remote.origin.url" "${HOMEBREW_CORE_GIT_REMOTE}"
|
||||||
execute "git" "config" "remote.origin.fetch" "+refs/heads/*:refs/remotes/origin/*"
|
execute "git" "config" "remote.origin.fetch" "+refs/heads/*:refs/remotes/origin/*"
|
||||||
execute "git" "config" "core.autocrlf" "false"
|
execute "git" "config" "--bool" "core.autocrlf" "false"
|
||||||
|
execute "git" "config" "--bool" "core.symlinks" "true"
|
||||||
execute "git" "fetch" "--force" "origin" "refs/heads/master:refs/remotes/origin/master"
|
execute "git" "fetch" "--force" "origin" "refs/heads/master:refs/remotes/origin/master"
|
||||||
execute "git" "remote" "set-head" "origin" "--auto" >/dev/null
|
execute "git" "remote" "set-head" "origin" "--auto" >/dev/null
|
||||||
execute "git" "reset" "--hard" "origin/master"
|
execute "git" "reset" "--hard" "origin/master"
|
||||||
@ -1012,16 +994,11 @@ case "${SHELL}" in
|
|||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
# `which` is a shell function defined above.
|
cat <<EOS
|
||||||
# shellcheck disable=SC2230
|
|
||||||
if [[ "$(which brew)" != "${HOMEBREW_PREFIX}/bin/brew" ]]
|
|
||||||
then
|
|
||||||
cat <<EOS
|
|
||||||
- Run these two commands in your terminal to add Homebrew to your ${tty_bold}PATH${tty_reset}:
|
- Run these two commands in your terminal to add Homebrew to your ${tty_bold}PATH${tty_reset}:
|
||||||
echo 'eval "\$(${HOMEBREW_PREFIX}/bin/brew shellenv)"' >> ${shell_profile}
|
(echo; echo 'eval "\$(${HOMEBREW_PREFIX}/bin/brew shellenv)"') >> ${shell_profile}
|
||||||
eval "\$(${HOMEBREW_PREFIX}/bin/brew shellenv)"
|
eval "\$(${HOMEBREW_PREFIX}/bin/brew shellenv)"
|
||||||
EOS
|
EOS
|
||||||
fi
|
|
||||||
if [[ -n "${non_default_repos}" ]]
|
if [[ -n "${non_default_repos}" ]]
|
||||||
then
|
then
|
||||||
plural=""
|
plural=""
|
||||||
@ -1029,7 +1006,8 @@ then
|
|||||||
then
|
then
|
||||||
plural="s"
|
plural="s"
|
||||||
fi
|
fi
|
||||||
echo "- Run these commands in your terminal to add the non-default Git remote${plural} for ${non_default_repos}:"
|
printf -- "- Run these commands in your terminal to add the non-default Git remote%s for %s:\n" "${plural}" "${non_default_repos}"
|
||||||
|
printf " echo '# Set PATH, MANPATH, etc., for Homebrew.' >> %s\n" "${shell_profile}"
|
||||||
printf " echo '%s' >> ${shell_profile}\n" "${additional_shellenv_commands[@]}"
|
printf " echo '%s' >> ${shell_profile}\n" "${additional_shellenv_commands[@]}"
|
||||||
printf " %s\n" "${additional_shellenv_commands[@]}"
|
printf " %s\n" "${additional_shellenv_commands[@]}"
|
||||||
fi
|
fi
|
||||||
|
124
install.sh
124
install.sh
@ -50,6 +50,7 @@ tty_mkbold() { tty_escape "1;$1"; }
|
|||||||
tty_underline="$(tty_escape "4;39")"
|
tty_underline="$(tty_escape "4;39")"
|
||||||
tty_blue="$(tty_mkbold 34)"
|
tty_blue="$(tty_mkbold 34)"
|
||||||
tty_red="$(tty_mkbold 31)"
|
tty_red="$(tty_mkbold 31)"
|
||||||
|
tty_green="$(tty_mkbold 32)"
|
||||||
tty_bold="$(tty_mkbold 39)"
|
tty_bold="$(tty_mkbold 39)"
|
||||||
tty_reset="$(tty_escape 0)"
|
tty_reset="$(tty_escape 0)"
|
||||||
|
|
||||||
@ -76,6 +77,18 @@ warn() {
|
|||||||
printf "${tty_red}Warning${tty_reset}: %s\n" "$(chomp "$1")"
|
printf "${tty_red}Warning${tty_reset}: %s\n" "$(chomp "$1")"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
checkExecute() {
|
||||||
|
if [ $? -ne 0 ];then
|
||||||
|
echo "${tty_red}执行成功 '$1'${tty_reset}"
|
||||||
|
if [[ "$2" == 'out' ]]; then
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
echo "${tty_green}执行成功${tty_reset}"
|
||||||
|
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
# Check if script is run non-interactively (e.g. CI)
|
# Check if script is run non-interactively (e.g. CI)
|
||||||
# If it is run non-interactively we should not prompt for passwords.
|
# If it is run non-interactively we should not prompt for passwords.
|
||||||
# Always use single-quoted strings with `exp` expressions
|
# Always use single-quoted strings with `exp` expressions
|
||||||
@ -163,6 +176,7 @@ else
|
|||||||
fi
|
fi
|
||||||
CHMOD=("/bin/chmod")
|
CHMOD=("/bin/chmod")
|
||||||
MKDIR=("/bin/mkdir" "-p")
|
MKDIR=("/bin/mkdir" "-p")
|
||||||
|
|
||||||
#changed
|
#changed
|
||||||
#HOMEBREW_BREW_DEFAULT_GIT_REMOTE="https://github.com/Homebrew/brew"
|
#HOMEBREW_BREW_DEFAULT_GIT_REMOTE="https://github.com/Homebrew/brew"
|
||||||
HOMEBREW_BREW_DEFAULT_GIT_REMOTE="https://mirrors.ustc.edu.cn/brew.git"
|
HOMEBREW_BREW_DEFAULT_GIT_REMOTE="https://mirrors.ustc.edu.cn/brew.git"
|
||||||
@ -173,6 +187,8 @@ HOMEBREW_CORE_DEFAULT_GIT_REMOTE="https://mirrors.ustc.edu.cn/homebrew-core.git"
|
|||||||
HOMEBREW_CASK_DEFAULT_GIT_REMOTE="https://mirrors.ustc.edu.cn/homebrew-cask.git"
|
HOMEBREW_CASK_DEFAULT_GIT_REMOTE="https://mirrors.ustc.edu.cn/homebrew-cask.git"
|
||||||
HOMEBREW_SERVICES_DEFAULT_GIT_REMOTE="https://gitlab.com/mirrorx/homebrew-services.git"
|
HOMEBREW_SERVICES_DEFAULT_GIT_REMOTE="https://gitlab.com/mirrorx/homebrew-services.git"
|
||||||
|
|
||||||
|
HOMEBREW_API_DEFAULT_DOMAIN="https://mirrors.ustc.edu.cn/homebrew-bottles/api"
|
||||||
|
|
||||||
# Use remote URLs of Homebrew repositories from environment if set.
|
# Use remote URLs of Homebrew repositories from environment if set.
|
||||||
HOMEBREW_BREW_GIT_REMOTE="${HOMEBREW_BREW_GIT_REMOTE:-"${HOMEBREW_BREW_DEFAULT_GIT_REMOTE}"}"
|
HOMEBREW_BREW_GIT_REMOTE="${HOMEBREW_BREW_GIT_REMOTE:-"${HOMEBREW_BREW_DEFAULT_GIT_REMOTE}"}"
|
||||||
HOMEBREW_CORE_GIT_REMOTE="${HOMEBREW_CORE_GIT_REMOTE:-"${HOMEBREW_CORE_DEFAULT_GIT_REMOTE}"}"
|
HOMEBREW_CORE_GIT_REMOTE="${HOMEBREW_CORE_GIT_REMOTE:-"${HOMEBREW_CORE_DEFAULT_GIT_REMOTE}"}"
|
||||||
@ -191,6 +207,7 @@ then
|
|||||||
HOMEBREW_CASK_GIT_REMOTE="${HOMEBREW_CASK_DEFAULT_GIT_REMOTE}"
|
HOMEBREW_CASK_GIT_REMOTE="${HOMEBREW_CASK_DEFAULT_GIT_REMOTE}"
|
||||||
fi
|
fi
|
||||||
export HOMEBREW_{BREW,CORE}_GIT_REMOTE
|
export HOMEBREW_{BREW,CORE}_GIT_REMOTE
|
||||||
|
export HOMEBREW_API_DEFAULT_DOMAIN
|
||||||
|
|
||||||
# TODO: bump version when new macOS is released or announced
|
# TODO: bump version when new macOS is released or announced
|
||||||
MACOS_NEWEST_UNSUPPORTED="14.0"
|
MACOS_NEWEST_UNSUPPORTED="14.0"
|
||||||
@ -624,14 +641,6 @@ EOS
|
|||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
ohai "This script will install:"
|
|
||||||
echo "${HOMEBREW_PREFIX}/bin/brew"
|
|
||||||
echo "${HOMEBREW_PREFIX}/share/doc/homebrew"
|
|
||||||
echo "${HOMEBREW_PREFIX}/share/man/man1/brew.1"
|
|
||||||
echo "${HOMEBREW_PREFIX}/share/zsh/site-functions/_brew"
|
|
||||||
echo "${HOMEBREW_PREFIX}/etc/bash_completion.d/brew"
|
|
||||||
echo "${HOMEBREW_REPOSITORY}"
|
|
||||||
|
|
||||||
# Keep relatively in sync with
|
# Keep relatively in sync with
|
||||||
# https://github.com/Homebrew/brew/blob/master/Library/Homebrew/keg.rb
|
# https://github.com/Homebrew/brew/blob/master/Library/Homebrew/keg.rb
|
||||||
directories=(
|
directories=(
|
||||||
@ -786,7 +795,7 @@ ohai "安装提示"
|
|||||||
|
|
||||||
echo "中文安装教程(建议收藏):https://brew.idayer.com/"
|
echo "中文安装教程(建议收藏):https://brew.idayer.com/"
|
||||||
|
|
||||||
echo "也可以查阅,Mac下镜像飞速安装Homebrew教程 :https://zhuanlan.zhihu.com/p/90508170"
|
echo "Mac下镜像飞速安装Homebrew教程(备用) :https://zhuanlan.zhihu.com/p/90508170"
|
||||||
|
|
||||||
echo "如果你想换源,可以使用镜像助手:https://brew.idayer.com/guide/change-source/"
|
echo "如果你想换源,可以使用镜像助手:https://brew.idayer.com/guide/change-source/"
|
||||||
|
|
||||||
@ -981,7 +990,7 @@ ohai "Downloading and installing Homebrew..."
|
|||||||
execute "${MKDIR[@]}" "${HOMEBREW_CORE}"
|
execute "${MKDIR[@]}" "${HOMEBREW_CORE}"
|
||||||
cd "${HOMEBREW_CORE}" >/dev/null || return
|
cd "${HOMEBREW_CORE}" >/dev/null || return
|
||||||
|
|
||||||
execute "git" "init" "-q"
|
execute "git" "-c" "init.defaultBranch=master" "init" "--quiet"
|
||||||
execute "git" "config" "remote.origin.url" "${HOMEBREW_CORE_GIT_REMOTE}"
|
execute "git" "config" "remote.origin.url" "${HOMEBREW_CORE_GIT_REMOTE}"
|
||||||
execute "git" "config" "remote.origin.fetch" "+refs/heads/*:refs/remotes/origin/*"
|
execute "git" "config" "remote.origin.fetch" "+refs/heads/*:refs/remotes/origin/*"
|
||||||
execute "git" "config" "--bool" "core.autocrlf" "false"
|
execute "git" "config" "--bool" "core.autocrlf" "false"
|
||||||
@ -1003,7 +1012,7 @@ ohai "Downloading and installing Homebrew..."
|
|||||||
execute "${MKDIR[@]}" "${HOMEBREW_CASK}"
|
execute "${MKDIR[@]}" "${HOMEBREW_CASK}"
|
||||||
cd "${HOMEBREW_CASK}" >/dev/null || return
|
cd "${HOMEBREW_CASK}" >/dev/null || return
|
||||||
|
|
||||||
execute "git" "init" "-q"
|
execute "git" "-c" "init.defaultBranch=master" "init" "--quiet"
|
||||||
execute "git" "config" "remote.origin.url" "${HOMEBREW_CASK_GIT_REMOTE}"
|
execute "git" "config" "remote.origin.url" "${HOMEBREW_CASK_GIT_REMOTE}"
|
||||||
execute "git" "config" "remote.origin.fetch" "+refs/heads/*:refs/remotes/origin/*"
|
execute "git" "config" "remote.origin.fetch" "+refs/heads/*:refs/remotes/origin/*"
|
||||||
execute "git" "config" "--bool" "core.autocrlf" "false"
|
execute "git" "config" "--bool" "core.autocrlf" "false"
|
||||||
@ -1016,16 +1025,16 @@ ohai "Downloading and installing Homebrew..."
|
|||||||
) || exit 1
|
) || exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ -n "${HOMEBREW_NO_INSTALL_FROM_API-}" && ! -d "${HOMEBREW_SERVICES}" ]]
|
if [[ ! -d "${HOMEBREW_SERVICES}" ]]
|
||||||
then
|
then
|
||||||
# Always use single-quoted strings with `exp` expressions
|
# Always use single-quoted strings with `exp` expressions
|
||||||
# shellcheck disable=SC2016
|
# shellcheck disable=SC2016
|
||||||
ohai 'Tapping homebrew/services because `$HOMEBREW_NO_INSTALL_FROM_API` is set.'
|
ohai 'Tapping homebrew/services'
|
||||||
(
|
(
|
||||||
execute "${MKDIR[@]}" "${HOMEBREW_SERVICES}"
|
execute "${MKDIR[@]}" "${HOMEBREW_SERVICES}"
|
||||||
cd "${HOMEBREW_SERVICES}" >/dev/null || return
|
cd "${HOMEBREW_SERVICES}" >/dev/null || return
|
||||||
|
|
||||||
execute "git" "init" "-q"
|
execute "git" "-c" "init.defaultBranch=master" "init" "--quiet"
|
||||||
execute "git" "config" "remote.origin.url" "${HOMEBREW_SERVICES_DEFAULT_GIT_REMOTE}"
|
execute "git" "config" "remote.origin.url" "${HOMEBREW_SERVICES_DEFAULT_GIT_REMOTE}"
|
||||||
execute "git" "config" "remote.origin.fetch" "+refs/heads/*:refs/remotes/origin/*"
|
execute "git" "config" "remote.origin.fetch" "+refs/heads/*:refs/remotes/origin/*"
|
||||||
execute "git" "config" "--bool" "core.autocrlf" "false"
|
execute "git" "config" "--bool" "core.autocrlf" "false"
|
||||||
@ -1047,23 +1056,12 @@ then
|
|||||||
warn "${HOMEBREW_PREFIX}/bin is not in your PATH."
|
warn "${HOMEBREW_PREFIX}/bin is not in your PATH."
|
||||||
fi
|
fi
|
||||||
|
|
||||||
ohai "Installation successful!"
|
ohai "🎉 恭喜,安装成功!"
|
||||||
echo
|
echo
|
||||||
|
|
||||||
ring_bell
|
ring_bell
|
||||||
|
|
||||||
# Use an extra newline and bold to avoid this being missed.
|
ohai "Homebrew是由志愿者义务维护的,如果可以请考虑捐赠:"
|
||||||
ohai "Homebrew has enabled anonymous aggregate formulae and cask analytics."
|
|
||||||
echo "$(
|
|
||||||
cat <<EOS
|
|
||||||
${tty_bold}Read the analytics documentation (and how to opt-out) here:
|
|
||||||
${tty_underline}https://docs.brew.sh/Analytics${tty_reset}
|
|
||||||
No analytics data has been sent yet (nor will any be during this ${tty_bold}install${tty_reset} run).
|
|
||||||
EOS
|
|
||||||
)
|
|
||||||
"
|
|
||||||
|
|
||||||
ohai "Homebrew is run entirely by unpaid volunteers. Please consider donating:"
|
|
||||||
echo "$(
|
echo "$(
|
||||||
cat <<EOS
|
cat <<EOS
|
||||||
${tty_underline}https://github.com/Homebrew/brew#donations${tty_reset}
|
${tty_underline}https://github.com/Homebrew/brew#donations${tty_reset}
|
||||||
@ -1095,30 +1093,45 @@ case "${SHELL}" in
|
|||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
# clean existed env
|
||||||
|
if [[ -e "${shell_profile}" ]]; then
|
||||||
|
if [[ -z "${HOMEBREW_ON_LINUX-}" ]]; then
|
||||||
|
#Mac
|
||||||
|
sed -i "" "/brew\.idayer\.com/d" ${shell_profile}
|
||||||
|
else
|
||||||
|
#Linux
|
||||||
|
sed -i "/brew\.idayer\.com/d" ${shell_profile}
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
echo "自动配置环境变量"
|
||||||
|
|
||||||
# `which` is a shell function defined above.
|
# `which` is a shell function defined above.
|
||||||
# shellcheck disable=SC2230
|
# shellcheck disable=SC2230
|
||||||
if [[ "$(which brew)" != "${HOMEBREW_PREFIX}/bin/brew" ]]
|
if [[ "$(which brew)" != "${HOMEBREW_PREFIX}/bin/brew" ]]
|
||||||
then
|
then
|
||||||
warn "!!!!!!!!!!! 重要 !!!!!!!!!!!!!!!"
|
cat >> ${shell_profile} <<EOS
|
||||||
echo "切记在终端执行环境变量设置!,如已执行过请忽略。"
|
eval \$(${HOMEBREW_PREFIX}/bin/brew shellenv) #brew.idayer.com
|
||||||
cat <<EOS
|
export HOMEBREW_API_DOMAIN=${HOMEBREW_API_DEFAULT_DOMAIN} #brew.idayer.com
|
||||||
- 执行下面命令将 Homebrew 到 ${tty_bold}PATH${tty_reset} 中:
|
export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.ustc.edu.cn/homebrew-bottles #brew.idayer.com
|
||||||
echo 'eval "\$(${HOMEBREW_PREFIX}/bin/brew shellenv)"' >> ${shell_profile}
|
EOS
|
||||||
eval "\$(${HOMEBREW_PREFIX}/bin/brew shellenv)"
|
else
|
||||||
|
cat >> ${shell_profile} <<EOS
|
||||||
|
export HOMEBREW_API_DOMAIN=${HOMEBREW_API_DEFAULT_DOMAIN} #brew.idayer.com
|
||||||
|
export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.ustc.edu.cn/homebrew-bottles #brew.idayer.com
|
||||||
EOS
|
EOS
|
||||||
echo " 如有疑问,可以访问 ${tty_underline}https://brew.idayer.com/guide/m1/${tty_reset}"
|
|
||||||
fi
|
fi
|
||||||
if [[ -n "${non_default_repos}" ]]
|
|
||||||
then
|
checkExecute
|
||||||
plural=""
|
source "${shell_profile}"
|
||||||
if [[ "${#additional_shellenv_commands[@]}" -gt 1 ]]
|
if [ $? -ne 0 ];then
|
||||||
then
|
echo "$(
|
||||||
plural="s"
|
cat <<EOS
|
||||||
fi
|
${tty_red}${shell_profile} 文件存在错误,请仔细查看提示进行修改${tty_reset}
|
||||||
printf -- "- Run these commands in your terminal to add the non-default Git remote%s for %s:\n" "${plural}" "${non_default_repos}"
|
EOS
|
||||||
printf " echo '# Set PATH, MANPATH, etc., for Homebrew.' >> %s\n" "${shell_profile}"
|
)
|
||||||
printf " echo '%s' >> ${shell_profile}\n" "${additional_shellenv_commands[@]}"
|
"
|
||||||
printf " %s\n" "${additional_shellenv_commands[@]}"
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ -n "${HOMEBREW_ON_LINUX-}" ]]
|
if [[ -n "${HOMEBREW_ON_LINUX-}" ]]
|
||||||
@ -1147,10 +1160,21 @@ then
|
|||||||
EOS
|
EOS
|
||||||
fi
|
fi
|
||||||
|
|
||||||
cat <<EOS
|
echo ""
|
||||||
- 🎉 恭喜,安装成功!运行 ${tty_bold}brew help${tty_reset} 开始体验吧
|
|
||||||
- 更多文档:
|
|
||||||
${tty_underline}https://brew.idayer.com${tty_reset}
|
|
||||||
${tty_underline}https://docs.brew.sh${tty_reset}
|
|
||||||
|
|
||||||
|
cat <<EOS
|
||||||
|
- 运行 ${tty_bold}brew help${tty_reset} 开始体验吧
|
||||||
|
- 教程文档:
|
||||||
|
${tty_underline}https://brew.idayer.com${tty_reset}
|
||||||
EOS
|
EOS
|
||||||
|
|
||||||
|
echo ""
|
||||||
|
|
||||||
|
ohai "维护加速脚本以及解答问题是很费时费力的工作,如果有幸帮助到你,可以考虑请我喝杯咖啡,或者帮我点个赞。"
|
||||||
|
echo "$(
|
||||||
|
cat <<EOS
|
||||||
|
☕ ${tty_underline}https://brew.idayer.com/reward/${tty_reset}
|
||||||
|
🌟${tty_underline}https://github.com/ineo6/homebrew-install${tty_reset}
|
||||||
|
EOS
|
||||||
|
)
|
||||||
|
"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user