aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xinstall2
-rwxr-xr-xutils/vim_bundles_update2
2 files changed, 2 insertions, 2 deletions
diff --git a/install b/install
index facc8c3..1433897 100755
--- a/install
+++ b/install
@@ -2,7 +2,7 @@
cd `dirname $0`
-git submodule update --init || (echo "Submodule update failed!"; exit 5)
+git submodule update --init --recursive || (echo "Submodule update failed!"; exit 5)
# Source inst and diff function
. ./utils/inst
diff --git a/utils/vim_bundles_update b/utils/vim_bundles_update
index 477eeef..eb502c6 100755
--- a/utils/vim_bundles_update
+++ b/utils/vim_bundles_update
@@ -7,6 +7,6 @@ for dir in vim/bundle/*; do
pushd $dir
git checkout master
git pull
- git submodule update --init
+ git submodule update --init --recursive
popd
done