Browse Source

Formatting

pull/10/head
gmarik 15 years ago
parent
commit
be04970941
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      autoload/vundle.vim

+ 2
- 2
autoload/vundle.vim View File

@ -67,9 +67,9 @@ func! vundle#sync_bundles()
let git_dir = bundle.path.'/.git' let git_dir = bundle.path.'/.git'
exec '!echo -ne "* '.bundle.name.'"' exec '!echo -ne "* '.bundle.name.'"'
if isdirectory(git_dir) if isdirectory(git_dir)
silent exec '!cd '.bundle.path.'; git pull'
silent exec '!cd '.bundle.path.'; git pull'
else else
silent exec '!git clone '.bundle.uri.' '.bundle.path
silent exec '!git clone '.bundle.uri.' '.bundle.path
endif endif
endfor endfor
endf endf


Loading…
Cancel
Save