diff options
author | Karel Kočí <karel.koci@nic.cz> | 2017-04-07 14:56:22 +0200 |
---|---|---|
committer | Karel Kočí <karel.koci@nic.cz> | 2017-04-07 14:56:22 +0200 |
commit | a793b23435567f2d4f49846196ceebcc47cd764c (patch) | |
tree | 5f542d40b11c55ff851724cbab21c27ba7a8ff0d /utils | |
parent | 6384224250a62e8b1ea913934db5dbae536ce153 (diff) | |
download | myconfigs-a793b23435567f2d4f49846196ceebcc47cd764c.tar.gz myconfigs-a793b23435567f2d4f49846196ceebcc47cd764c.tar.bz2 myconfigs-a793b23435567f2d4f49846196ceebcc47cd764c.zip |
Remove stuff not needed on server
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 |