This commit is contained in:
gmarik
2010-10-17 20:58:05 -05:00
parent e2d5ec30e6
commit 17f66dec08
2 changed files with 3 additions and 3 deletions

View File

@@ -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