aboutsummaryrefslogtreecommitdiff
path: root/utils/vim_bundles_update
blob: 477eeef8964b257882e1f6fde987659b6ac30e7e (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
	popd
done