mirror of
https://github.com/neovim/neovim.git
synced 2026-02-08 21:08:47 +00:00
test: fix some type warnings (#37483)
This commit is contained in:
@@ -163,8 +163,7 @@ end
|
||||
--- @param hdr string
|
||||
--- @return string[]?
|
||||
function Gcc:dependencies(hdr)
|
||||
--- @type string
|
||||
local cmd = argss_to_cmd(self.path, { '-M', hdr }) .. ' 2>&1'
|
||||
local cmd = table.concat(argss_to_cmd(self.path, { '-M', hdr }), ' ') .. ' 2>&1'
|
||||
local out = assert(io.popen(cmd))
|
||||
local deps = out:read('*a')
|
||||
out:close()
|
||||
|
||||
Reference in New Issue
Block a user