aboutsummaryrefslogtreecommitdiff
path: root/utils/vim_bundles_update
blob: eb502c6fb5a19de0827f26caecc5fca6e8331875 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
set -e

[ -d vim/bundle ] || (echo Run in root of myconfigs only! && exit 1)

for dir in vim/bundle/*; do
	pushd $dir
	git checkout master
	git pull
	git submodule update --init --recursive
	popd
done