Skip to content

Commit

Permalink
health: add java check
Browse files Browse the repository at this point in the history
  • Loading branch information
williamboman committed Dec 30, 2021
1 parent 0055d15 commit 09e602e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lua/nvim-lsp-installer/health/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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 },
Expand Down

0 comments on commit 09e602e

Please sign in to comment.