mirror of
https://github.com/neovim/neovim.git
synced 2026-03-31 21:02:11 +00:00
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:
committed by
Christian Clason
parent
e51f5e17e1
commit
06e4b159ed
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user