Skip to content

Commit 84c9a54

Browse files
emberiangmarik
authored andcommitted
Escape the repo URI when cloning
1 parent c9d9714 commit 84c9a54

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎autoload/vundle/installer.vim‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ func! s:sync(bang, bundle) abort
216216
let get_current_sha = g:shellesc_cd(get_current_sha)
217217
let initial_sha = s:system(get_current_sha)[0:15]
218218
else
219-
let cmd = 'git clone --recursive '.a:bundle.uri.' '.shellescape(a:bundle.path())
219+
let cmd = 'git clone --recursive '.shellescape(a:bundle.uri).' '.shellescape(a:bundle.path())
220220
let initial_sha = ''
221221
endif
222222

0 commit comments

Comments
 (0)