Fix bug from Pull request #395

#395 broke oh-my-zsh for users who disable check-for-updates
This commit is contained in:
Michael Komitee 2011-06-04 14:03:10 -04:00
parent 55e86a4765
commit c2648a7ebf

View file

@ -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