oh-my-zsh/tools/check_for_upgrade.sh

36 lines
721 B
Bash
Raw Normal View History

2009-09-24 00:11:45 +00:00
#!/bin/sh
function _current_epoch() {
echo $(($(date +%s) / 60 / 60 / 24))
}
function _update_zsh_update() {
echo "LAST_EPOCH=$(_current_epoch)" > ~/.zsh-update
}
2009-09-24 00:11:45 +00:00
if [ -f ~/.zsh-update ]
then
2009-10-11 08:50:08 +00:00
. ~/.zsh-update
if [[ -z "$LAST_EPOCH" ]]; then
_update_zsh_update && return 0;
fi
epoch_diff=$(($(_current_epoch) - $LAST_EPOCH))
2009-09-24 00:11:45 +00:00
if [ $epoch_diff -gt 6 ]
then
echo "[Oh My Zsh] Would you like to check for updates?"
echo "Type Y to update oh-my-zsh: \c"
read line
if [ "$line" = Y ] || [ "$line" = y ]
then
/usr/bin/env ZSH=$ZSH /bin/sh $ZSH/tools/upgrade.sh
2011-04-29 15:12:40 +00:00
# update the zsh file
_update_zsh_update
2009-09-24 00:11:45 +00:00
fi
fi
2011-04-29 15:12:40 +00:00
else
# create the zsh file
_update_zsh_update
2009-09-24 00:11:45 +00:00
fi