Browse Source

Merge 0f58ed04ff into a910b88797

pull/151/merge
GitHub Merge Button 14 years ago
parent
commit
a11c629d47
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      autoload/vundle/installer.vim

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

@ -202,7 +202,8 @@ func! s:sync(bang, bundle) abort
if (has('win32') || has('win64'))
let cmd = substitute(cmd, '^cd ','cd /d ','') " add /d switch to change drives
let cmd = '"'.cmd.'"' " enclose in quotes
" Bad case. this is double and double quoting...
"let cmd = '"'.cmd.'"' " enclose in quotes
endif
else
let cmd = 'git clone '.a:bundle.uri.' '.shellescape(a:bundle.path())


Loading…
Cancel
Save