From 95865067af8988cb81bf89352fae3961d12a4a9e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Mon, 9 Jan 2017 08:10:11 +0100 Subject: Update vim plugins --- utils/vim_bundles_update | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 utils/vim_bundles_update (limited to 'utils/vim_bundles_update') diff --git a/utils/vim_bundles_update b/utils/vim_bundles_update new file mode 100755 index 0000000..eb502c6 --- /dev/null +++ b/utils/vim_bundles_update @@ -0,0 +1,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 -- cgit v1.2.3