From e84c7ff3d5e678154b91e3bea85271ce83e024a3 Mon Sep 17 00:00:00 2001 From: neo Date: Fri, 3 Feb 2023 20:10:00 +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.sh | 15 +++++++-------- uninstall.sh | 8 ++++++++ 2 files changed, 15 insertions(+), 8 deletions(-) diff --git a/install.sh b/install.sh index 56efcb0..c33713e 100755 --- a/install.sh +++ b/install.sh @@ -563,8 +563,7 @@ else abort "$( cat <> %s" "${shell_profile}" - printf " echo '%s' >> %s\n" "${additional_shellenv_commands[@]}" "${shell_profile}" + 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 " %s\n" "${additional_shellenv_commands[@]}" fi diff --git a/uninstall.sh b/uninstall.sh index 8e0c3c0..a5546d4 100755 --- a/uninstall.sh +++ b/uninstall.sh @@ -222,6 +222,14 @@ EOS while [[ $# -gt 0 ]] do case "$1" in + -p) + homebrew_prefix_candidates+=("$2") + shift + ;; + --path) + homebrew_prefix_candidates+=("$2") + shift + ;; -p*) homebrew_prefix_candidates+=("${1#-p}") ;; --path=*) homebrew_prefix_candidates+=("${1#--path=}") ;; --skip-cache-and-logs) opt_skip_cache_and_logs=1 ;;