Skip to content

Commit

Permalink
Fix bug from Pull request ohmyzsh#395
Browse files Browse the repository at this point in the history
    ohmyzsh#395 broke oh-my-zsh for users who disable check-for-updates
  • Loading branch information
Michael Komitee authored and trabianmatt committed Apr 1, 2013
1 parent d06273f commit 000a1f9
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions oh-my-zsh.sh
@@ -1,8 +1,6 @@
# Check for updates on initial load...
if [ "$DISABLE_AUTO_UPDATE" = "true" ]
if [ "$DISABLE_AUTO_UPDATE" != "true" ]
then
return
else
/usr/bin/env zsh $ZSH/tools/check_for_upgrade.sh
fi

Expand Down

0 comments on commit 000a1f9

Please sign in to comment.