blob: 665acbad3f4cc10f06e5017dcf79bf4a3f404c99 (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/bash
DIR="$(cd "$(dirname "$0")" && pwd)"
source $DIR/check_upstream.sh
cd ~/git/settings && git pull --quiet &
cd ~/vimwiki && git pull --quiet &
check_upstream ~/git/tig &
check_upstream ~/.vim_runtime &
|