aboutsummaryrefslogtreecommitdiff
path: root/files/.vim/bundle/update.sh
diff options
context:
space:
mode:
Diffstat (limited to 'files/.vim/bundle/update.sh')
-rwxr-xr-xfiles/.vim/bundle/update.sh16
1 files changed, 0 insertions, 16 deletions
diff --git a/files/.vim/bundle/update.sh b/files/.vim/bundle/update.sh
deleted file mode 100755
index c8cb034..0000000
--- a/files/.vim/bundle/update.sh
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/bin/bash
-
-oldcwd=$(pwd)
-
-cd "$(dirname "$0")"
-for submodule in *
-do
- if [ -d "$submodule/.git" ]
- then
- cd "$submodule"
- echo "--- $submodule:"
- git pull
- cd ..
- fi
-done
-cd "$oldcwd"