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