aboutsummaryrefslogtreecommitdiff
path: root/utils/vim_bundles_update
diff options
context:
space:
mode:
Diffstat (limited to 'utils/vim_bundles_update')
-rwxr-xr-xutils/vim_bundles_update12
1 files changed, 0 insertions, 12 deletions
diff --git a/utils/vim_bundles_update b/utils/vim_bundles_update
deleted file mode 100755
index eb502c6..0000000
--- a/utils/vim_bundles_update
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/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