summaryrefslogtreecommitdiff
path: root/lib/cli.zsh
diff options
context:
space:
mode:
Diffstat (limited to 'lib/cli.zsh')
-rw-r--r--lib/cli.zsh4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/cli.zsh b/lib/cli.zsh
index 3c09cdab8..d8203f271 100644
--- a/lib/cli.zsh
+++ b/lib/cli.zsh
@@ -201,10 +201,14 @@ function _omz::pr::test {
}
function _omz::update {
+ # Run update script
env ZSH="$ZSH" sh "$ZSH/tools/upgrade.sh"
# 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
+ _omz::log info "restarting the zsh session..."
+ [[ -z "$SHELL" ]] && exec ${SHELL#-} || exec zsh
}