summaryrefslogtreecommitdiff
path: root/bundle-update.sh
diff options
context:
space:
mode:
authorTuowen Zhao <ztuowen@gmail.com>2017-01-22 11:27:44 -0700
committerTuowen Zhao <ztuowen@gmail.com>2017-01-22 11:27:44 -0700
commite8ed3462bb066dbbf4860c378ee2d657896a2857 (patch)
tree7e279749419e47e25ecc2ccc751267da291a80f6 /bundle-update.sh
parent20bde51a46c737632e7fc464b531a1752caca9fb (diff)
downloadvim-e8ed3462bb066dbbf4860c378ee2d657896a2857.tar.gz
vim-e8ed3462bb066dbbf4860c378ee2d657896a2857.tar.bz2
vim-e8ed3462bb066dbbf4860c378ee2d657896a2857.zip
Bundle update Sun Jan 22 11:27:44 MST 2017
Diffstat (limited to 'bundle-update.sh')
-rwxr-xr-xbundle-update.sh13
1 files changed, 13 insertions, 0 deletions
diff --git a/bundle-update.sh b/bundle-update.sh
new file mode 100755
index 0000000..5f50a0a
--- /dev/null
+++ b/bundle-update.sh
@@ -0,0 +1,13 @@
+#!/bin/sh
+
+wd=$(dirname $0)
+
+for i in $(ls $wd/bundle); do
+ pushd $wd/bundle/$i
+ git pull origin master
+ popd > /dev/null
+done
+
+cd $wd
+git add .
+git commit -m "Bundle update `date`"