diff options
author | Javier Lopez <graulopezjavier@gmail.com> | 2021-10-12 22:06:19 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-12 20:06:19 -0700 |
commit | 5365f241680d986a0eb3b055b36cb45960be54c1 (patch) | |
tree | 9234904fa058d46ee3e0049e89c55880db32d37a | |
parent | 649b3160a10f0053747383f0703b0a5a94548570 (diff) | |
download | rneovim-5365f241680d986a0eb3b055b36cb45960be54c1.tar.gz rneovim-5365f241680d986a0eb3b055b36cb45960be54c1.tar.bz2 rneovim-5365f241680d986a0eb3b055b36cb45960be54c1.zip |
fix(heath/provider.vim): using list as string #16007
Fixes #15988
-rw-r--r-- | runtime/autoload/health/provider.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/autoload/health/provider.vim b/runtime/autoload/health/provider.vim index 001379c85d..7b4dce3441 100644 --- a/runtime/autoload/health/provider.vim +++ b/runtime/autoload/health/provider.vim @@ -710,7 +710,7 @@ function! s:check_perl() abort let latest_cpan = s:system(latest_cpan_cmd) if s:shell_error || empty(latest_cpan) - call health#report_error('Failed to run: '. latest_cpan_cmd, + call health#report_error('Failed to run: '. join(latest_cpan_cmd, " "), \ ["Make sure you're connected to the internet.", \ 'Are you behind a firewall or proxy?']) return |