summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xupdate7
1 files changed, 7 insertions, 0 deletions
diff --git a/update b/update
new file mode 100755
index 0000000..59ae847
--- /dev/null
+++ b/update
@@ -0,0 +1,7 @@
+#! /bin/sh
+
+DIR=$(readlink -f $(dirname $0))
+curl -so $DIR/autoload/pathogen.vim https://raw.github.com/tpope/vim-pathogen/HEAD/autoload/pathogen.vim
+for repo in $DIR/bundle/*; do
+ echo -en " ${repo##*/}\n " && cd $repo && git pull
+done