exit if cd into OMZ_HOME fails
This commit is contained in:
parent
6967a58253
commit
070e4eeadf
1 changed files with 4 additions and 4 deletions
|
@ -15,12 +15,12 @@
|
|||
#
|
||||
# ( [ ! -f ~/.omz-update ] || [ ~/.omz-update(Nmh+6) ] ) && update-omz && touch ~/.omz-update
|
||||
|
||||
local current_path=$PWD
|
||||
cd $OMZ_HOME
|
||||
|
||||
zstyle -t ':omz:function:update-omz' auto-commit || local nocommit='--no-commit'
|
||||
zstyle -t ':omz:function:update-omz' upstream '_upstream'
|
||||
|
||||
local current_path=$PWD
|
||||
cd $OMZ_HOME || return 1
|
||||
|
||||
if git pull --rebase $nocommit --strategy=recursive -X ours ${_upstream:-origin} master && git submodule update --recursive; then
|
||||
zstyle -t ':omz:function:update-omz' color && printf "$FG[blue]"
|
||||
printf 'Hooray! oh-my-zsh is up-to-date :)\n'
|
||||
|
@ -29,4 +29,4 @@ else
|
|||
printf 'Oh no! There was an error updating oh-my-zsh :(\n'
|
||||
fi
|
||||
|
||||
cd "$current_path"
|
||||
cd "$current_path" || return 1
|
||||
|
|
Loading…
Add table
Reference in a new issue