summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tools/check_for_upgrade.sh7
1 files changed, 7 insertions, 0 deletions
diff --git a/tools/check_for_upgrade.sh b/tools/check_for_upgrade.sh
index 0f8c9c391..d877e2a89 100644
--- a/tools/check_for_upgrade.sh
+++ b/tools/check_for_upgrade.sh
@@ -26,6 +26,13 @@ if [ -f ~/.zsh-update ]
then
. ~/.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
_update_zsh_update && return 0;
fi