From b38cb68040e4f42237391f492519551e0ce27f6e Mon Sep 17 00:00:00 2001 From: Guillaume Maudoux Date: Tue, 1 Mar 2016 09:11:28 +0100 Subject: [PATCH] Add missing coma --- autoload/vundle/installer.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/vundle/installer.vim b/autoload/vundle/installer.vim index e19858ba..406b2c5b 100644 --- a/autoload/vundle/installer.vim +++ b/autoload/vundle/installer.vim @@ -374,7 +374,7 @@ func! s:make_git_command(bundle, args) abort let git = ['git', '--git-dir='.gitdir, '--work-tree='.workdir] - return join(map(git + a:args 'vundle#installer#shellesc')) + return join(map(git + a:args, 'vundle#installer#shellesc')) endf " ---------------------------------------------------------------------------