run update check *after* running custom configuration scripts.

This means we are running it after $PATH has potentially been set up,
which means it's more likely that commands like "git" will be found
This commit is contained in:
Jon Evans 2009-10-01 08:55:07 +01:00
parent ed457cbee7
commit 5e2ad9a8ed
2 changed files with 8 additions and 8 deletions

View file

@ -7,11 +7,3 @@ bindkey "^[m" copy-prev-shell-word
## jobs
setopt long_list_jobs
# Check for updates on initial load...
if [ "$DISABLE_AUTO_UPDATE" = "true" ]
then
return
else
/bin/sh $ZSH/tools/check_for_upgrade.sh
fi

View file

@ -6,3 +6,11 @@ for config_file ($ZSH/lib/*.zsh) source $config_file
# Load all of your custom configurations from custom/
for config_file ($ZSH/custom/*.zsh) source $config_file
# Check for updates on initial load...
if [ "$DISABLE_AUTO_UPDATE" = "true" ]
then
return
else
/bin/sh $ZSH/tools/check_for_upgrade.sh
fi