Skip to content

Commit

Permalink
Merge pull request #400 from mkomitee/master
Browse files Browse the repository at this point in the history
Fix bug introduced in pull request #395 which impacts users who DISABLE_AUTO_UPDATE
  • Loading branch information
robbyrussell committed Jun 5, 2011
2 parents e8bd400 + 9b4a89f commit ed990f6
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions oh-my-zsh.sh
Original file line number Diff line number Diff line change
@@ -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 ed990f6

Please sign in to comment.