From 17f66dec08ab20fc89c20e2616583cab23c086e3 Mon Sep 17 00:00:00 2001 From: gmarik Date: Sun, 17 Oct 2010 20:58:05 -0500 Subject: [PATCH] Fixes --- README.md | 4 ++-- plugin/vundle.vim | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 8729ad3..d64aad3 100644 --- a/README.md +++ b/README.md @@ -13,11 +13,11 @@ Append those lines to your .vimrc - source '~/.vim/plugin/vundle.vim' + source ~/.vim/plugin/vundle.vim Bundle "http://github.com/vim-scripts/L9.git" Bundle "http://github.com/vim-scripts/FuzzyFinder.git" - Bundle "http://git.wincent.com/command-t.git" + Bundle "git://git.wincent.com/command-t.git" Bundle "http://github.com/vim-scripts/rails.vim.git" Bundle "http://github.com/vim-scripts/ack.vim.git" diff --git a/plugin/vundle.vim b/plugin/vundle.vim index 3925e4c..28beb7f 100644 --- a/plugin/vundle.vim +++ b/plugin/vundle.vim @@ -41,7 +41,7 @@ function! vundle#sync_bundles() for bundle in g:bundles let bundle_path = s:BundlePath(bundle) let bundle_uri = g:bundle_uris[bundle] - execute '!echo "* '.bundle.'";cd '.bundle_path.' && git pull || git clone '.bundle_uri.' '.bundle_path + execute '!echo "* '.bundle.'";cd '.g:bundle_dir.' && git pull 2>/dev/null || git clone '.bundle_uri.' '.bundle_path endfor endfunction