0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-19 04:01:21 +02:00
ohmyzsh/tools/check_for_upgrade.sh

58 lines
1.1 KiB
Bash
Raw Normal View History

#!/usr/bin/env zsh
zmodload zsh/datetime
2009-09-24 02:11:45 +02:00
function _current_epoch() {
echo $(( $EPOCHSECONDS / 60 / 60 / 24 ))
}
function _update_zsh_update() {
echo "LAST_EPOCH=$(_current_epoch)" >! ~/.zsh-update
}
2009-09-24 02:11:45 +02:00
function _upgrade_zsh() {
env ZSH=$ZSH /bin/sh $ZSH/tools/upgrade.sh
# update the zsh file
_update_zsh_update
}
2012-11-26 20:35:16 +01:00
epoch_target=$UPDATE_ZSH_DAYS
if [[ -z "$epoch_target" ]]; then
# Default to old behavior
epoch_target=13
fi
# Cancel upgrade if the current user doesn't have write permissions for the
# oh-my-zsh directory.
[[ -w "$ZSH" ]] || return 0
2009-09-24 02:11:45 +02:00
if [ -f ~/.zsh-update ]
then
2009-10-11 10:50:08 +02:00
. ~/.zsh-update
if [[ -z "$LAST_EPOCH" ]]; then
_update_zsh_update && return 0;
fi
epoch_diff=$(($(_current_epoch) - $LAST_EPOCH))
2012-11-26 20:35:16 +01:00
if [ $epoch_diff -gt $epoch_target ]
2009-09-24 02:11:45 +02:00
then
if [ "$DISABLE_UPDATE_PROMPT" = "true" ]
2009-09-24 02:11:45 +02:00
then
_upgrade_zsh
else
echo "[Oh My Zsh] Would you like to check for updates? [Y/n]: \c"
read line
if [ "$line" = Y ] || [ "$line" = y ] || [ -z "$line" ]; then
_upgrade_zsh
else
_update_zsh_update
fi
2009-09-24 02:11:45 +02:00
fi
fi
2011-04-29 17:12:40 +02:00
else
# create the zsh file
_update_zsh_update
2009-09-24 02:11:45 +02:00
fi