Skip to content

Commit

Permalink
Fix upgrade_oh_my_zsh function deprecation
Browse files Browse the repository at this point in the history
  • Loading branch information
mcornella committed Aug 17, 2020
1 parent 613045e commit 7deda85
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
4 changes: 4 additions & 0 deletions lib/cli.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
16 changes: 14 additions & 2 deletions lib/functions.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,20 @@ function uninstall_oh_my_zsh() {
}

function upgrade_oh_my_zsh() {
echo >&2 "${fg[yellow]}Note: \`$0\` is deprecated. Use \`omz update\` instead.$reset_color"
omz update
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" 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
}

function take() {
Expand Down

0 comments on commit 7deda85

Please sign in to comment.