fix(health): show full curl output

Problem: The health check for `curl` strips the first line of the
version output, which contains potentially useful information.

Solution: Only trim empty lines.
This commit is contained in:
Christian Clason
2026-01-10 11:50:19 +01:00
committed by Christian Clason
parent e51f5e17e1
commit 06e4b159ed

View File

@@ -452,7 +452,7 @@ local function check_external_tools()
local lines = { string.format('curl %s (%s)', curl_version, curl_path) }
for line in vim.gsplit(curl_out, '\n', { plain = true }) do
if line ~= '' and not line:match('^curl') then
if line ~= '' then
table.insert(lines, line)
end
end