From f0f9200f6628256671350f1f1cfc0e163c2100c5 Mon Sep 17 00:00:00 2001 From: gmarik Date: Sun, 17 Oct 2010 21:16:52 -0500 Subject: [PATCH] Another fix, sorry --- plugin/vundle.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/vundle.vim b/plugin/vundle.vim index 28beb7f..26291db 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 '.g:bundle_dir.' && git pull 2>/dev/null || git clone '.bundle_uri.' '.bundle_path + execute '!echo "* '.bundle.'";cd '.bundle_path.' 2>/dev/null && git pull || git clone '.bundle_uri.' '.bundle_path endfor endfunction