aboutsummaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorKarel Kočí <karel.koci@nic.cz>2017-04-07 14:56:22 +0200
committerKarel Kočí <karel.koci@nic.cz>2017-04-07 14:56:22 +0200
commita793b23435567f2d4f49846196ceebcc47cd764c (patch)
tree5f542d40b11c55ff851724cbab21c27ba7a8ff0d /utils
parent6384224250a62e8b1ea913934db5dbae536ce153 (diff)
downloadmyconfigs-a793b23435567f2d4f49846196ceebcc47cd764c.tar.gz
myconfigs-a793b23435567f2d4f49846196ceebcc47cd764c.tar.bz2
myconfigs-a793b23435567f2d4f49846196ceebcc47cd764c.zip
Remove stuff not needed on server
Diffstat (limited to 'utils')
-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