mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-11 00:10:08 +00:00
Merge pull request #400 from mkomitee/master
Fix bug introduced in pull request #395 which impacts users who DISABLE_AUTO_UPDATE
This commit is contained in:
commit
ed990f61ff
1 changed files with 1 additions and 3 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue