diff options
author | Marc Cornellà <hello@mcornella.com> | 2021-09-30 17:22:04 +0200 |
---|---|---|
committer | Marc Cornellà <hello@mcornella.com> | 2021-10-04 10:47:10 +0200 |
commit | 0120749a54d147405beebe6f8416da0e4443ebc4 (patch) | |
tree | 17d9e87a3373bb75a1e950b8e754d4f498cdb487 /tools/check_for_upgrade.sh | |
parent | 3c9743313cc916a6cede71e333eecef4b07ce3ce (diff) | |
download | zsh-0120749a54d147405beebe6f8416da0e4443ebc4.tar.gz zsh-0120749a54d147405beebe6f8416da0e4443ebc4.tar.bz2 zsh-0120749a54d147405beebe6f8416da0e4443ebc4.zip |
feat(updater): add mode to only remind you to update when it's time (#10187)
Fixes #10187
Co-authored-by: NoPreserveRoot <NoPreserveRoot@pm.me>
Diffstat (limited to 'tools/check_for_upgrade.sh')
-rw-r--r-- | tools/check_for_upgrade.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/check_for_upgrade.sh b/tools/check_for_upgrade.sh index fa832ffac..e6a4a3d69 100644 --- a/tools/check_for_upgrade.sh +++ b/tools/check_for_upgrade.sh @@ -89,6 +89,8 @@ function update_ohmyzsh() { # Ask for confirmation before updating unless in auto mode if [[ "$update_mode" = auto ]]; then update_ohmyzsh + elif [[ "$update_mode" = reminder ]]; then + echo "[oh-my-zsh] It's time to update! You can do that by running \`omz update\`" else # input sink to swallow all characters typed before the prompt # and add a newline if there wasn't one after characters typed |