Browse Source

Merge cf5879962d into 3bf598d169

pull/228/merge
Leszek Swirski 13 years ago
parent
commit
51ec53eccc
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      autoload/vundle/installer.vim

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

@ -212,7 +212,9 @@ 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
if (version < 703 || (version == 703 && !has('patch445')))
let cmd = '"'.cmd.'"' " enclose in quotes
endif
endif
let get_current_sha = 'cd '.shellescape(a:bundle.path()).' && git rev-parse HEAD'


Loading…
Cancel
Save