Browse Source

with nosync use existing dir as a DESTINATION path too

events
gmarik 15 years ago
parent
commit
f5a079deae
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      autoload/vundle/config.vim

+ 3
- 3
autoload/vundle/config.vim View File

@ -91,10 +91,10 @@ func! s:bundle.installed()
endf
func! s:bundle.path()
if self.nosync()
return expand(self.uri)
" TODO: should lcd to tmpdir here
if self.nosync() && isdirectory(expand(self.uri))
return self.uri
endif
return join([g:vundle#bundle_dir, self.name], '/')
endf


Loading…
Cancel
Save