From 7f94a032e1cfb662f0c5df15e60b1ebdc3e15c4b Mon Sep 17 00:00:00 2001 From: JingMatrix Date: Sun, 16 Apr 2023 12:39:48 +0200 Subject: fix(checkhealth): shell_error and cpanm module shell_error is a function, the code missed parentheses The actual module for perl module version is App::cpanminus::script, not App::cpanminus::fatscript. --- runtime/lua/provider/health.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'runtime') diff --git a/runtime/lua/provider/health.lua b/runtime/lua/provider/health.lua index 1c882de222..3a60e38fe5 100644 --- a/runtime/lua/provider/health.lua +++ b/runtime/lua/provider/health.lua @@ -850,7 +850,7 @@ local function perl() local latest_cpan_cmd = { perl_exec, - '-MApp::cpanminus::fatscript', + '-MApp::cpanminus::script', '-e', 'my $app = App::cpanminus::script->new; $app->parse_options ("--info", "-q", "Neovim::Ext"); exit $app->doit', } @@ -886,7 +886,7 @@ local function perl() local current_cpan_cmd = { perl_exec, '-W', '-MNeovim::Ext', '-e', 'print $Neovim::Ext::VERSION' } local current_cpan = system(current_cpan_cmd) - if shell_error then + if shell_error() then error( 'Failed to run: ' .. table.concat(current_cpan_cmd, ' '), { 'Report this issue with the output of: ', table.concat(current_cpan_cmd, ' ') } -- cgit