remove submodules and add autoupdate

This commit is contained in:
quackerd 2021-03-08 05:34:14 -05:00
parent ec0ac75c24
commit 13736a33f8

View File

@ -54,7 +54,7 @@ function ozsh_autoupdate {
local timediff=$(( ($(date --date="$(date)" +%s) - $(date --date="$(cat $OZSH_LASTUPDATE_FILE)" +%s) ) / (60*60*24) )) local timediff=$(( ($(date --date="$(date)" +%s) - $(date --date="$(cat $OZSH_LASTUPDATE_FILE)" +%s) ) / (60*60*24) ))
if [ "$timediff" -ge "7" ]; then if [ "$timediff" -ge "7" ]; then
vared -p 'Would you like to update ozsh? [y/N]: ' -c answer vared -p 'Would you like to update ozsh? [y/N]: ' -c answer
if [ "$answer" == "y" || "$answer" == "Y" ]; then if [ "$answer" = "y" ] || [ "$answer" = "Y" ]; then
ozsh_update ozsh_update
fi fi
fi fi