aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorHsieh Chin Fan <typebrook@gmail.com>2021-04-06 08:45:51 +0800
committerHsieh Chin Fan <typebrook@gmail.com>2021-04-06 08:45:51 +0800
commitfeff9da066006c502c92da88f777e9585b1c0ea3 (patch)
tree7092fb5de8af5f9a2f354c9ca271c0243fda42b4
parent16bc954499be4782b3dfe3b8bcddbcd342a39747 (diff)
update
-rwxr-xr-xtools/init/exit.sh2
-rwxr-xr-xtools/init/sync.sh4
2 files changed, 4 insertions, 2 deletions
diff --git a/tools/init/exit.sh b/tools/init/exit.sh
index f24be47..c16bd3d 100755
--- a/tools/init/exit.sh
+++ b/tools/init/exit.sh
@@ -1,5 +1,5 @@
1#! /bin/env bash 1#! /bin/env bash
2 2
3if [[ `cat /etc/hostname` != 'vultr' ]]; then 3if [[ `cat /etc/hostname` != 'vultr' ]]; then
4 rsync -a --delete ~/.thunderbird/ pham@topo.tw:~/.thunderbird/ & 4 rsync -a --delete ~/.thunderbird/ pham@topo.tw:~/.thunderbird &
5fi 5fi
diff --git a/tools/init/sync.sh b/tools/init/sync.sh
index 8f23dbe..50e07f9 100755
--- a/tools/init/sync.sh
+++ b/tools/init/sync.sh
@@ -15,4 +15,6 @@ check_upstream ~/git/tig || echo in `pwd` >/dev/tty &
15check_upstream ~/.vim_runtime || echo in `pwd` >/dev/tty & 15check_upstream ~/.vim_runtime || echo in `pwd` >/dev/tty &
16 16
17# thunderbird 17# thunderbird
18rsync -a pham@topo.tw:~/.thunderbird/ ~/.thunderbird/ & 18if [[ `cat /etc/hostname` != 'vultr' ]]; then
19 rsync -a pham@topo.tw:~/.thunderbird/ ~/.thunderbird &
20fi