aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/sync.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tools/sync.sh')
-rwxr-xr-xtools/sync.sh7
1 files changed, 6 insertions, 1 deletions
diff --git a/tools/sync.sh b/tools/sync.sh
index 1c33138..00ed4b8 100755
--- a/tools/sync.sh
+++ b/tools/sync.sh
@@ -1,6 +1,11 @@
1#!/bin/bash 1#!/bin/bash
2 2
3# my repo
3cd $SETTING_DIR && git pull --quiet || echo in `pwd` > /dev/tty & 4cd $SETTING_DIR && git pull --quiet || echo in `pwd` > /dev/tty &
4cd ~/vimwiki && git pull --quiet || echo in `pwd` > /dev/tty & 5if [ -d ~/vimwiki ]; then
6 cd ~/vimwiki && git pull --quiet || echo in `pwd` > /dev/tty &
7fi
8
9# others repo
5check_upstream ~/git/tig || echo in `pwd` > /dev/tty & 10check_upstream ~/git/tig || echo in `pwd` > /dev/tty &
6check_upstream ~/.vim_runtime || echo in `pwd` > /dev/tty & 11check_upstream ~/.vim_runtime || echo in `pwd` > /dev/tty &