remove submodules and add autoupdate

This commit is contained in:
quackerd 2021-03-08 05:07:13 -05:00
parent d32b2f2bf3
commit 19b48191fd

View File

@ -50,7 +50,7 @@ function ozsh_update {
}
function ozsh_autoupdate {
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
vared -p 'Would you like to update ozsh? [y/N]: ' -c answer
if [ "$answer" == "y" || "$answer" == "Y" ]; then