diff options
author | Karel Kočí <karel.koci@nic.cz> | 2018-09-26 13:12:29 +0200 |
---|---|---|
committer | Karel Kočí <karel.koci@nic.cz> | 2018-09-26 14:08:28 +0200 |
commit | 4c8a774222435098a077e8f10cca6518393952fa (patch) | |
tree | 9b531825c85bda5845e1b8d233a49e3a3322b111 /utils | |
parent | 29c59d0f2cdfd75c5e3ae310558f5cae67f1637e (diff) | |
download | myconfigs-4c8a774222435098a077e8f10cca6518393952fa.tar.gz myconfigs-4c8a774222435098a077e8f10cca6518393952fa.tar.bz2 myconfigs-4c8a774222435098a077e8f10cca6518393952fa.zip |
vim: use vundle
Diffstat (limited to 'utils')
-rwxr-xr-x | utils/vim_bundles_update | 12 |
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 |