diff options
author | Tuowen Zhao <ztuowen@gmail.com> | 2017-01-22 11:27:44 -0700 |
---|---|---|
committer | Tuowen Zhao <ztuowen@gmail.com> | 2017-01-22 11:27:44 -0700 |
commit | e8ed3462bb066dbbf4860c378ee2d657896a2857 (patch) | |
tree | 7e279749419e47e25ecc2ccc751267da291a80f6 /bundle-update.sh | |
parent | 20bde51a46c737632e7fc464b531a1752caca9fb (diff) | |
download | vim-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-x | bundle-update.sh | 13 |
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`" |