mirror of
https://github.com/folke/lazy.nvim.git
synced 2025-04-04 06:57:34 +00:00
fix(health): only check for luarocks when luarocks is enabled.
This commit is contained in:
parent
77edda11bf
commit
ae4881d36e
1 changed files with 6 additions and 4 deletions
|
@ -18,10 +18,12 @@ function M.check()
|
|||
error("'git' not installed?")
|
||||
end
|
||||
|
||||
if vim.fn.executable("luarocks") == 1 then
|
||||
ok("'luarocks' installed")
|
||||
else
|
||||
warn("'luarocks' not installed")
|
||||
if Config.options.rocks.enabled then
|
||||
if vim.fn.executable("luarocks") == 1 then
|
||||
ok("'luarocks' installed")
|
||||
else
|
||||
error("'luarocks' not installed. Either install it or set opts.rocks.enabled = false")
|
||||
end
|
||||
end
|
||||
|
||||
local sites = vim.opt.packpath:get()
|
||||
|
|
Loading…
Add table
Reference in a new issue