mirror of https://git.xinb.cc/xinb/ohmyzsh.git
fix(cli): exit `omz update` with correct error code (#10342)
This commit is contained in:
parent
f1dd97bb2a
commit
1e5e834e0f
|
@ -755,9 +755,9 @@ function _omz::update {
|
|||
|
||||
# Run update script
|
||||
if [[ "$1" != --unattended ]]; then
|
||||
ZSH="$ZSH" zsh -f "$ZSH/tools/upgrade.sh" --interactive
|
||||
ZSH="$ZSH" zsh -f "$ZSH/tools/upgrade.sh" --interactive || return $?
|
||||
else
|
||||
ZSH="$ZSH" zsh -f "$ZSH/tools/upgrade.sh"
|
||||
ZSH="$ZSH" zsh -f "$ZSH/tools/upgrade.sh" || return $?
|
||||
fi
|
||||
|
||||
# Update last updated file
|
||||
|
|
Loading…
Reference in New Issue