diff options
author | Marc Cornellà <marc.cornella@live.com> | 2020-08-18 19:51:19 +0200 |
---|---|---|
committer | Marc Cornellà <marc.cornella@live.com> | 2020-08-18 19:51:19 +0200 |
commit | 89400f156a6e1d64acaeab9ec265f54cdab91817 (patch) | |
tree | e7363ff0d6ba5b85b582823ecb4ab0791e2ff56a /lib/cli.zsh | |
parent | 7deda85f8cf7fb3c2f36b771a2e8bd70a28bf0b3 (diff) | |
download | zsh-89400f156a6e1d64acaeab9ec265f54cdab91817.tar.gz zsh-89400f156a6e1d64acaeab9ec265f54cdab91817.tar.bz2 zsh-89400f156a6e1d64acaeab9ec265f54cdab91817.zip |
Remove zsh session restart on omz update and upgrade_oh_my_zsh
Diffstat (limited to 'lib/cli.zsh')
-rw-r--r-- | lib/cli.zsh | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/cli.zsh b/lib/cli.zsh index d8203f271..c1ae2bdf2 100644 --- a/lib/cli.zsh +++ b/lib/cli.zsh @@ -208,7 +208,4 @@ function _omz::update { 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 - _omz::log info "restarting the zsh session..." - [[ -z "$SHELL" ]] && exec ${SHELL#-} || exec zsh } |