From 8233bada0511cf09006f4dd489837836ba084a96 Mon Sep 17 00:00:00 2001 From: neo Date: Tue, 17 Oct 2023 11:55:48 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=9B=B4=E6=96=B0=E8=84=9A=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- install-origin.sh | 79 +++++++++++++++++++++++++++++++---------------- install.sh | 19 +++++++----- 2 files changed, 65 insertions(+), 33 deletions(-) diff --git a/install-origin.sh b/install-origin.sh index 687c979..5533894 100755 --- a/install-origin.sh +++ b/install-origin.sh @@ -39,6 +39,28 @@ then abort 'Bash must not run in POSIX mode. Please unset POSIXLY_CORRECT and try again.' fi +usage() { + cat <> ${shell_profile} + (echo; echo 'eval "\$(${HOMEBREW_PREFIX}/bin/brew shellenv)"') >> ${shell_rcfile} eval "\$(${HOMEBREW_PREFIX}/bin/brew shellenv)" EOS fi @@ -1032,8 +1059,8 @@ then plural="s" fi 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 '# Set PATH, MANPATH, etc., for Homebrew.' >> %s\n" "${shell_rcfile}" + printf " echo '%s' >> ${shell_rcfile}\n" "${additional_shellenv_commands[@]}" printf " %s\n" "${additional_shellenv_commands[@]}" fi diff --git a/install.sh b/install.sh index 610c6aa..4b325a7 100755 --- a/install.sh +++ b/install.sh @@ -240,9 +240,9 @@ export HOMEBREW_API_DOMAIN export HOMEBREW_BOTTLE_DOMAIN # TODO: bump version when new macOS is released or announced -MACOS_NEWEST_UNSUPPORTED="14.0" +MACOS_NEWEST_UNSUPPORTED="15.0" # TODO: bump version when new macOS is released -MACOS_OLDEST_SUPPORTED="11.0" +MACOS_OLDEST_SUPPORTED="12.0" # For Homebrew on Linux REQUIRED_RUBY_VERSION=2.6 # https://github.com/Homebrew/brew/pull/6556 @@ -1163,18 +1163,23 @@ EOS ohai "Next steps:" case "${SHELL}" in */bash*) - if [[ -r "${HOME}/.bash_profile" ]] + if [[ -n "${HOMEBREW_ON_LINUX-}" ]] then - shell_profile="${HOME}/.bash_profile" + shell_rcfile="${HOME}/.bashrc" else - shell_profile="${HOME}/.profile" + shell_rcfile="${HOME}/.bash_profile" fi ;; */zsh*) - shell_profile="${HOME}/.zprofile" + if [[ -n "${HOMEBREW_ON_LINUX-}" ]] + then + shell_rcfile="${ZDOTDIR:-"${HOME}"}/.zshrc" + else + shell_rcfile="${ZDOTDIR:-"${HOME}"}/.zprofile" + fi ;; *) - shell_profile="${HOME}/.profile" + shell_rcfile="${ENV:-"${HOME}/.profile"}" ;; esac