1
0
Fork 0
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
prezto/plugins/auto-update/init.zsh

14 lines
303 B

# Auto-update zsh if its over 6 hours old
# Jonathan Dahan <jonathan@jedahan.com>
# Take a look at the update-omz options in functions/
if [ -f ~/.omz-update ]; then
# update if ~/.omz-update was modified over 6 hours ago
if [ ~/.omz-update(Nmh+6) ]; then
update-omz
fi
else
update-omz
fi