fix(nvim): cmake_build fails to build due to missing space

This commit is contained in:
Kyren223
2024-08-08 17:40:39 +03:00
parent 2e507e488b
commit 4da0b5681a

View File

@@ -9,7 +9,7 @@ return {
return {
name = 'Cmake',
cmd = 'cmake ' .. args .. '.. && cmake --build .',
cmd = 'cmake ' .. args .. ' .. && cmake --build .',
cwd = root_dir .. '/build',
}
end,