From 18197e2f08ccf6669dd8e0e6f6a8ed9a8179f80f Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Tue, 20 Oct 2020 20:32:31 +0900 Subject: [PATCH] Remove double quotes --- plug.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plug.vim b/plug.vim index 81c530b..2623f7e 100644 --- a/plug.vim +++ b/plug.vim @@ -1078,7 +1078,7 @@ function! s:checkout(spec) let output = s:git_revision(a:spec.dir) if !empty(output) && !s:hash_match(sha, s:lines(output)[0]) let output = s:system( - \ 'git -c credential.helper="" fetch --depth 999999 && git checkout '.plug#shellescape(sha).' --', a:spec.dir) + \ 'git -c credential.helper= fetch --depth 999999 && git checkout '.plug#shellescape(sha).' --', a:spec.dir) endif return output endfunction