mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-22 13:50:09 +00:00
Cancel update if the current user doesn't have write permissions for the oh-my-zsh directory.
This commit is contained in:
parent
357ab4912b
commit
152e1e07e0
1 changed files with 7 additions and 0 deletions
|
@ -26,6 +26,13 @@ if [ -f ~/.zsh-update ]
|
||||||
then
|
then
|
||||||
. ~/.zsh-update
|
. ~/.zsh-update
|
||||||
|
|
||||||
|
# cancel update if the current user doesn't have write permissions for the
|
||||||
|
# oh-my-zsh directory
|
||||||
|
if [ -n $(find -not -writable "$ZSH") ]
|
||||||
|
then
|
||||||
|
return 0;
|
||||||
|
fi
|
||||||
|
|
||||||
if [[ -z "$LAST_EPOCH" ]]; then
|
if [[ -z "$LAST_EPOCH" ]]; then
|
||||||
_update_zsh_update && return 0;
|
_update_zsh_update && return 0;
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue