From 4da0b5681ada2676a5c7efbdf6f2f30dced48a10 Mon Sep 17 00:00:00 2001 From: Kyren223 Date: Thu, 8 Aug 2024 17:40:39 +0300 Subject: [PATCH] fix(nvim): cmake_build fails to build due to missing space --- .config/nvim/lua/overseer/template/custom/cmake_build.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/nvim/lua/overseer/template/custom/cmake_build.lua b/.config/nvim/lua/overseer/template/custom/cmake_build.lua index 4c18627..eb97757 100644 --- a/.config/nvim/lua/overseer/template/custom/cmake_build.lua +++ b/.config/nvim/lua/overseer/template/custom/cmake_build.lua @@ -9,7 +9,7 @@ return { return { name = 'Cmake', - cmd = 'cmake ' .. args .. '.. && cmake --build .', + cmd = 'cmake ' .. args .. ' .. && cmake --build .', cwd = root_dir .. '/build', } end,