fix(ci): pre declare on lint

This commit is contained in:
Barrett Ruth 2025-10-03 23:30:40 -04:00
parent f929c8e826
commit 88315ed6e6

View file

@ -34,7 +34,8 @@ local function run_scraper(platform, subcommand, args, opts)
local stderr = uv.new_pipe(false)
local buf = ''
local handle = uv.spawn(
local handle
handle = uv.spawn(
cmd[1],
{ args = vim.list_slice(cmd, 2), stdio = { nil, stdout, stderr } },
function(code, signal)