Browse Source

Merge 5bb014d45e into 6437ad6df4

pull/796/merge
Loic Reyreaud 9 years ago
committed by GitHub
parent
commit
d1a4d070b5
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      autoload/vundle/installer.vim

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

@ -278,8 +278,8 @@ endf
" ---------------------------------------------------------------------------
func! vundle#installer#delete(bang, dir_name) abort
let cmd = ((has('win32') || has('win64')) && empty(matchstr(&shell, 'sh'))) ?
\ 'rmdir /S /Q' :
let cmd = (has('win32') || has('win64')) ?
\ 'cmd /C rmdir /S /Q' :
\ 'rm -rf'
let bundle = vundle#config#init_bundle(a:dir_name, {})


Loading…
Cancel
Save