From 68cd1294991c320d696fe2cbd973899aa8a54c3d Mon Sep 17 00:00:00 2001 From: Adam Calhoon Date: Wed, 19 Feb 2025 10:18:59 -0500 Subject: [PATCH] Make symlinking silent --- lua/cmake-tools/utils.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/cmake-tools/utils.lua b/lua/cmake-tools/utils.lua index 5f657f94..d61ebffe 100644 --- a/lua/cmake-tools/utils.lua +++ b/lua/cmake-tools/utils.lua @@ -86,7 +86,7 @@ end function utils.softlink(src, target) if utils.file_exists(src) and not utils.file_exists(target) then -- if we don't always use terminal - local cmd = "exec " + local cmd = "silent exec " .. "'!cmake -E create_symlink " .. utils.transform_path(src) .. " "