From 33560002b4103cb8be3ba2bf51cd395bbc4702fd Mon Sep 17 00:00:00 2001 From: Jan Edmund Lazo Date: Wed, 4 Nov 2020 18:40:34 -0500 Subject: healthcheck: suggest to skip tests perl provider (#13223) CPAN tests are unreliable on Windows. CI does the same to reduce flaky,slow builds. --- runtime/autoload/health/provider.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'runtime/autoload') diff --git a/runtime/autoload/health/provider.vim b/runtime/autoload/health/provider.vim index e8e38f581f..94fd7cf505 100644 --- a/runtime/autoload/health/provider.vim +++ b/runtime/autoload/health/provider.vim @@ -749,7 +749,7 @@ function! s:check_perl() abort call health#report_warn( \ printf('Module "Neovim::Ext" is out-of-date. Installed: %s, latest: %s', \ current_cpan, latest_cpan), - \ ['Run in shell: cpanm Neovim::Ext']) + \ ['Run in shell: cpanm -n Neovim::Ext']) else call health#report_ok('Latest "Neovim::Ext" cpan module is installed: '. current_cpan) endif -- cgit