diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2012-03-26 09:17:56 +0200 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2012-03-26 09:17:56 +0200 |
commit | 0af1fcc9cddd3c4d94afb1ab8bf1b4944b705f42 (patch) | |
tree | e0232670682c7bacb0cbcfc42975ed931a2df8ec | |
parent | c80b8e68168a64b6df156a768f984be73556a60c (diff) | |
download | vim-0af1fcc9cddd3c4d94afb1ab8bf1b4944b705f42.zip vim-0af1fcc9cddd3c4d94afb1ab8bf1b4944b705f42.tar.gz |
add update
-rwxr-xr-x | update | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -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 |