mirror of
https://github.com/neovim/neovim.git
synced 2025-09-07 20:08:17 +00:00
fix(health): check unmatching python_glob as empty table (#28215)
This commit is contained in:
@@ -187,7 +187,7 @@ local function check_rplugin_manifest()
|
|||||||
local require_update = false
|
local require_update = false
|
||||||
local handle_path = function(path)
|
local handle_path = function(path)
|
||||||
local python_glob = vim.fn.glob(path .. '/rplugin/python*', true, true)
|
local python_glob = vim.fn.glob(path .. '/rplugin/python*', true, true)
|
||||||
if python_glob == '' then
|
if vim.tbl_isempty(python_glob) then
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user