2018-02-11 03:36:07 +00:00
|
|
|
#!/usr/bin/env zsh
|
2018-02-11 05:32:06 +00:00
|
|
|
# Modified from https://github.com/robbyrussell/oh-my-zsh/blob/master/tools/check_for_upgrade.sh
|
|
|
|
# Original Copyright: (c) 2009-2018 Robby Russell and contributors
|
|
|
|
# Modified Copyright: (c) 2018 David Todd (c0de)
|
|
|
|
# License: MIT
|
2018-02-11 03:36:07 +00:00
|
|
|
|
|
|
|
zmodload zsh/datetime
|
|
|
|
|
|
|
|
function _current_epoch() {
|
|
|
|
echo $(( $EPOCHSECONDS / 60 / 60 / 24 ))
|
|
|
|
}
|
|
|
|
|
|
|
|
function _update_dotfiles_update() {
|
2018-02-11 05:18:23 +00:00
|
|
|
echo "export LAST_EPOCH=$(_current_epoch)" > ${HOME}/.dotfiles-update
|
|
|
|
echo "touched ~/.dotfiles-update"
|
2018-02-11 03:36:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function _upgrade_dotfiles() {
|
2018-10-23 04:27:44 +00:00
|
|
|
env _DOTFILES=$_DOTFILES sh $_DOTFILES/.bin/upgrade.sh
|
2018-02-11 03:36:07 +00:00
|
|
|
# update the zsh file
|
2018-02-11 04:24:17 +00:00
|
|
|
_update_dotfiles_update
|
2018-02-11 03:36:07 +00:00
|
|
|
}
|
|
|
|
|
2018-02-11 04:24:17 +00:00
|
|
|
# Configure this in shell/env
|
|
|
|
epoch_target=$UPDATE_DOTFILES_DAYS
|
2018-02-11 03:36:07 +00:00
|
|
|
if [[ -z "$epoch_target" ]]; then
|
2018-02-11 04:24:17 +00:00
|
|
|
# Default to every 2 weeks
|
2018-02-11 03:36:07 +00:00
|
|
|
epoch_target=13
|
|
|
|
fi
|
|
|
|
|
2018-02-11 05:18:23 +00:00
|
|
|
# Cancel upgrade if the current user doesn't have
|
|
|
|
# write permissions for the dotfiles directory.
|
|
|
|
if [[ -w "$_DOTFILES" ]]; then
|
|
|
|
else
|
|
|
|
echo "You can't write to $(_dotfiles)!"
|
|
|
|
return 1
|
|
|
|
fi
|
2018-02-11 03:36:07 +00:00
|
|
|
|
|
|
|
# Cancel upgrade if git is unavailable on the system
|
2018-02-11 05:18:23 +00:00
|
|
|
if [[ $(whence git >/dev/null) || false ]]; then
|
|
|
|
else
|
|
|
|
echo "git is not available"
|
|
|
|
return 2
|
|
|
|
fi
|
2018-02-11 03:36:07 +00:00
|
|
|
|
2018-02-11 05:18:23 +00:00
|
|
|
if mkdir -p "$_DOTFILES/update.lock" 2>/dev/null; then
|
|
|
|
if [ -f ${HOME}/.dotfiles-update ]; then
|
|
|
|
. ${HOME}/.dotfiles-update
|
2018-02-11 03:36:07 +00:00
|
|
|
|
|
|
|
if [[ -z "$LAST_EPOCH" ]]; then
|
2018-02-11 05:18:23 +00:00
|
|
|
echo "Missing \$LAST_EPOCH"
|
|
|
|
_update_dotfiles_update && return 0;
|
2018-02-11 03:36:07 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
epoch_diff=$(($(_current_epoch) - $LAST_EPOCH))
|
|
|
|
if [ $epoch_diff -gt $epoch_target ]; then
|
|
|
|
if [ "$DISABLE_UPDATE_PROMPT" = "true" ]; then
|
|
|
|
_upgrade_dotfiles
|
|
|
|
else
|
|
|
|
echo "[Dotfiles] Would you like to check for updates? [Y/n]: \c"
|
|
|
|
read line
|
|
|
|
if [[ "$line" == Y* ]] || [[ "$line" == y* ]] || [ -z "$line" ]; then
|
|
|
|
_upgrade_dotfiles
|
|
|
|
else
|
|
|
|
_update_dotfiles_update
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
else
|
2018-02-11 05:18:23 +00:00
|
|
|
echo "Missing ~/.dotfiles-update"
|
2018-02-11 03:36:07 +00:00
|
|
|
# create the zsh file
|
|
|
|
_update_dotfiles_update
|
|
|
|
fi
|
|
|
|
|
2018-02-11 05:18:23 +00:00
|
|
|
rmdir $_DOTFILES/update.lock
|
2018-02-11 03:36:07 +00:00
|
|
|
fi
|