From a8f3439fba120343d2b15f7f133ea93147a4ddc0 Mon Sep 17 00:00:00 2001 From: Guillaume Maudoux Date: Tue, 1 Mar 2016 09:09:24 +0100 Subject: [PATCH] Fix missing variable tag --- 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 d4e49f2b..e19858ba 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 + args 'vundle#installer#shellesc')) + return join(map(git + a:args 'vundle#installer#shellesc')) endf " ---------------------------------------------------------------------------