diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-11-04 18:40:34 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-04 18:40:34 -0500 |
commit | 33560002b4103cb8be3ba2bf51cd395bbc4702fd (patch) | |
tree | 2db716f1c14e51fecedfb1d52eeb98f2a3d8db62 | |
parent | ee3acef3864b843d242ed617d4e3c7550b858b0d (diff) | |
download | rneovim-33560002b4103cb8be3ba2bf51cd395bbc4702fd.tar.gz rneovim-33560002b4103cb8be3ba2bf51cd395bbc4702fd.tar.bz2 rneovim-33560002b4103cb8be3ba2bf51cd395bbc4702fd.zip |
healthcheck: suggest to skip tests perl provider (#13223)
CPAN tests are unreliable on Windows.
CI does the same to reduce flaky,slow builds.
-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 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 |