diff options
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/nvim-lsp-installer/health/init.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lua/nvim-lsp-installer/health/init.lua b/lua/nvim-lsp-installer/health/init.lua index 6a09da15..051a3830 100644 --- a/lua/nvim-lsp-installer/health/init.lua +++ b/lua/nvim-lsp-installer/health/init.lua @@ -176,7 +176,8 @@ function M.check() ), check { cmd = "python3", args = { "--version" }, name = "python3", relaxed = true }, check { cmd = "python3", args = { "-m", "pip", "--version" }, name = "pip3", relaxed = true }, - check { cmd = "javac", args = { "-version" }, name = "java", relaxed = true }, + check { cmd = "javac", args = { "-version" }, name = "javac", relaxed = true }, + check { cmd = "java", args = { "-version" }, name = "java", relaxed = true }, check { cmd = "wget", args = { "--version" }, name = "wget" }, -- wget is used interchangeably with curl, but with higher priority, so we mark curl as relaxed check { cmd = "curl", args = { "--version" }, name = "curl", relaxed = true }, |
