diff options
Diffstat (limited to 'bin/update_dotfiles')
-rwxr-xr-x | bin/update_dotfiles | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/bin/update_dotfiles b/bin/update_dotfiles new file mode 100755 index 0000000..6c45971 --- /dev/null +++ b/bin/update_dotfiles @@ -0,0 +1,20 @@ +#!/bin/sh -e + +dotfiles="$HOME/dotfiles" +epoch_file="$dotfiles/.updated" +epoch_curr=$(date +'%s') +[ -e "$epoch_file" ] && epoch_old=$(<"$epoch_file") +epoch_diff=$(($epoch_curr - ${epoch_old:-0})) +max_time=$((60 * 60 * 24 * 7)) + +if [ $(($epoch_diff / $max_time)) -ne 0 ]; then + echo "Updating dotfiles ..." + + cd "$dotfiles" + git pull --rebase --stat origin master + echo $epoch_curr > "$epoch_file" + ./install.sh + cd - + + echo "Finished." +fi |