summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorMarc Cornellà <marc.cornella@live.com>2020-12-07 19:57:35 +0100
committerMarc Cornellà <marc.cornella@live.com>2020-12-07 20:58:12 +0100
commit4b7dba5b75cf5ed9e047d18c0a1588a52fa7f83b (patch)
treede614d5fe28deecaa4d31f6438cb9574df6e4b3b /lib
parent92fa8153d5e7e2e0d317f766f608e2062c76b390 (diff)
downloadzsh-4b7dba5b75cf5ed9e047d18c0a1588a52fa7f83b.tar.gz
zsh-4b7dba5b75cf5ed9e047d18c0a1588a52fa7f83b.tar.bz2
zsh-4b7dba5b75cf5ed9e047d18c0a1588a52fa7f83b.zip
feat(lib)!: soft-deprecate `upgrade_oh_my_zsh` function for everybody
BREAKING CHANGE: the `upgrade_oh_my_zsh` function now calls `omz update` directly.
Diffstat (limited to 'lib')
-rw-r--r--lib/functions.zsh19
1 files changed, 2 insertions, 17 deletions
diff --git a/lib/functions.zsh b/lib/functions.zsh
index 0fc758070..7beb62ad9 100644
--- a/lib/functions.zsh
+++ b/lib/functions.zsh
@@ -9,23 +9,8 @@ function uninstall_oh_my_zsh() {
}
function upgrade_oh_my_zsh() {
- if (( $+functions[_omz::update] )); then
- echo >&2 "${fg[yellow]}Note: \`$0\` is deprecated. Use \`omz update\` instead.$reset_color"
- fi
-
- # Run update script
- env ZSH="$ZSH" zsh -f "$ZSH/tools/upgrade.sh" --interactive
- local ret=$?
- # Update last updated file
- zmodload zsh/datetime
- echo "LAST_EPOCH=$(( EPOCHSECONDS / 60 / 60 / 24 ))" >! "${ZSH_CACHE_DIR}/.zsh-update"
- # Remove update lock if it exists
- command rm -rf "$ZSH/log/update.lock"
- # Restart the zsh session
- if [[ $ret -eq 0 ]]; then
- # Check whether to run a login shell
- [[ "$ZSH_ARGZERO" = -* ]] && exec -l "${ZSH_ARGZERO#-}" || exec "$ZSH_ARGZERO"
- fi
+ echo >&2 "${fg[yellow]}Note: \`$0\` is deprecated. Use \`omz update\` instead.$reset_color"
+ omz update
}
function take() {