mirror of
				https://github.com/neovim/neovim.git
				synced 2025-11-04 09:44:31 +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 handle_path = function(path)
 | 
			
		||||
    local python_glob = vim.fn.glob(path .. '/rplugin/python*', true, true)
 | 
			
		||||
    if python_glob == '' then
 | 
			
		||||
    if vim.tbl_isempty(python_glob) then
 | 
			
		||||
      return
 | 
			
		||||
    end
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user