Browse Source

initialize bundle instead crafting path manually

pull/86/merge
gmarik 15 years ago
parent
commit
e4715271ec
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      autoload/vundle/installer.vim

+ 2
- 2
autoload/vundle/installer.vim View File

@ -146,8 +146,8 @@ func! vundle#installer#delete(bang, dir_name) abort
\ 'rmdir /S /Q' :
\ 'rm -rf'
let path = shellescape(expand(g:bundle_dir.'/'.a:dir_name))
let cmd .= ' '.path
let bundle = vundle#config#init_bundle(a:dir_name, {})
let cmd .= ' '.bundle.path()
let out = s:system(cmd)


Loading…
Cancel
Save