From 0f58ed04ff279caee204ff4b7e12e32904b9ff2d Mon Sep 17 00:00:00 2001 From: rkt Date: Sun, 4 Mar 2012 14:59:15 +0900 Subject: [PATCH] Fix: Quad quoting --- autoload/vundle/installer.vim | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/autoload/vundle/installer.vim b/autoload/vundle/installer.vim index 0f71ebf..b0c6cf7 100644 --- a/autoload/vundle/installer.vim +++ b/autoload/vundle/installer.vim @@ -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())