mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-12-29 11:39:50 +00:00
fix(updater): don't show changelog when running unattended update (#9495)
Fixes #9495
This commit is contained in:
@@ -24,7 +24,7 @@ function update_last_updated_file() {
|
||||
}
|
||||
|
||||
function update_ohmyzsh() {
|
||||
ZSH="$ZSH" zsh -f "$ZSH/tools/upgrade.sh"
|
||||
ZSH="$ZSH" zsh -f "$ZSH/tools/upgrade.sh" --interactive
|
||||
update_last_updated_file
|
||||
}
|
||||
|
||||
|
||||
@@ -70,10 +70,12 @@ if git pull --rebase --stat origin master; then
|
||||
message="Hooray! Oh My Zsh has been updated!"
|
||||
|
||||
# Display changelog with less if available, otherwise just print it to the terminal
|
||||
if (( $+commands[less] )); then
|
||||
"$ZSH/tools/changelog.sh" HEAD "$last_commit" --text | command less -R
|
||||
else
|
||||
"$ZSH/tools/changelog.sh" HEAD "$last_commit"
|
||||
if [[ "$1" = --interactive ]]; then
|
||||
if (( $+commands[less] )); then
|
||||
"$ZSH/tools/changelog.sh" HEAD "$last_commit" --text | LESS= command less -R
|
||||
else
|
||||
"$ZSH/tools/changelog.sh" HEAD "$last_commit"
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
|
||||
|
||||
Reference in New Issue
Block a user