1
0
Fork 0

exit if cd into OMZ_HOME fails

pull/5/head
Jonathan Dahan 13 years ago
parent 6967a58253
commit 070e4eeadf

@ -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…
Cancel
Save