Browse Source

Fix bug in deleting plugins

pull/116/head
Marwan Al Jubeh 12 years ago
parent
commit
49e9739c46
1 changed files with 2 additions and 4 deletions
  1. +2
    -4
      autoload/vundle/installer.vim

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

@ -307,12 +307,10 @@ func! vundle#installer#delete(bang, dir_name) abort
\ ]
let cmd = join(cmd_parts, ' && ')
let cmd = vundle#installer#shellesc_cd(cmd)
let cmd .= ' &&'
else
let cmd .= vundle#installer#shell_rmdir(bundle.path())
endif
let bundle = vundle#config#init_bundle(a:dir_name, {})
let cmd .= vundle#installer#shell_rmdir(bundle.path())
let out = s:system(cmd)
call s:log('')


Loading…
Cancel
Save