fix refactor pt 3

This commit is contained in:
dlond 2025-05-25 23:54:26 +12:00
parent 6ade3bdbd9
commit a7e384d20c
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ return {
program = function()
local utils = require 'custom.utils'
local cwd = vim.fn.getcwd()
local co = utils.pick_executable(cwd .. '/build')
local co = utils.pick_executable 'build'
local ok, result = coroutine.resume(co)
return ok and result or nil
end,