aboutsummaryrefslogtreecommitdiff
path: root/.vim/bundle/update_submodule.sh
blob: fba5df9346388adcf432ced42f4cf285bce55913 (plain)
1
2
3
4
5
6
7
8
#!/bin/bash

for dir in ./*/; do 
	cd $dir
	git pull
	git checkout master
	cd ..
done