feat: 更新脚本

This commit is contained in:
neo 2023-02-03 20:10:00 +08:00
parent 983cf90f78
commit e84c7ff3d5
2 changed files with 15 additions and 8 deletions

View File

@ -563,8 +563,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" ]]
@ -759,7 +758,7 @@ 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 [[ -z "${HOMEBREW_NO_INSTALL_FROM_API-}" && -n "${HOMEBREW_INSTALL_FROM_API-}" ]]
then then
ohai "HOMEBREW_INSTALL_FROM_API is set." ohai "HOMEBREW_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 not be tapped during this ${tty_bold}install${tty_reset} run."
@ -903,7 +902,7 @@ 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"
@ -953,7 +952,7 @@ ohai "Downloading and installing Homebrew..."
fi fi
fi fi
if [[ -n "${HOMEBREW_INSTALL_FROM_API-}" ]] if [[ -z "${HOMEBREW_NO_INSTALL_FROM_API-}" && -n "${HOMEBREW_INSTALL_FROM_API-}" ]]
then then
# shellcheck disable=SC2016 # shellcheck disable=SC2016
ohai 'Skip tapping homebrew/core because `$HOMEBREW_INSTALL_FROM_API` is set.' ohai 'Skip tapping homebrew/core because `$HOMEBREW_INSTALL_FROM_API` is set.'
@ -1060,9 +1059,9 @@ then
then then
plural="s" plural="s"
fi fi
printf "- Run these commands in your terminal to add the non-default Git remote%s for %s:" "${plural}" "${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" "${shell_profile}" printf " echo '# Set PATH, MANPATH, etc., for Homebrew.' >> %s\n" "${shell_profile}"
printf " echo '%s' >> %s\n" "${additional_shellenv_commands[@]}" "${shell_profile}" printf " echo '%s' >> ${shell_profile}\n" "${additional_shellenv_commands[@]}"
printf " %s\n" "${additional_shellenv_commands[@]}" printf " %s\n" "${additional_shellenv_commands[@]}"
fi fi

View File

@ -222,6 +222,14 @@ EOS
while [[ $# -gt 0 ]] while [[ $# -gt 0 ]]
do do
case "$1" in case "$1" in
-p)
homebrew_prefix_candidates+=("$2")
shift
;;
--path)
homebrew_prefix_candidates+=("$2")
shift
;;
-p*) homebrew_prefix_candidates+=("${1#-p}") ;; -p*) homebrew_prefix_candidates+=("${1#-p}") ;;
--path=*) homebrew_prefix_candidates+=("${1#--path=}") ;; --path=*) homebrew_prefix_candidates+=("${1#--path=}") ;;
--skip-cache-and-logs) opt_skip_cache_and_logs=1 ;; --skip-cache-and-logs) opt_skip_cache_and_logs=1 ;;