blob: 59ae847abf5830ef8a36b0868f3a0e57299c8b5c (
plain)
1
2
3
4
5
6
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
|