aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMercvajler, Mihael <mihael.mercvajler@jungheinrich.at>2022-11-25 22:32:25 +0100
committerHennadii Chernyshchyk <genaloner@gmail.com>2022-11-25 23:44:28 +0200
commit87c9b7c3f82b7d950064802976ab36bdf30cdc2c (patch)
tree12123758c8b2a98ebe1ad123c6732e809d6c10fc
parentd4b683739e4f1b530eb66e0783a1e3dad5e4b21b (diff)
downloadneovim-tasks-87c9b7c3f82b7d950064802976ab36bdf30cdc2c.tar.gz
neovim-tasks-87c9b7c3f82b7d950064802976ab36bdf30cdc2c.zip
Fix typo in cmake.params: "cmake" -> "cmd"
-rw-r--r--lua/tasks/module/cmake.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/tasks/module/cmake.lua b/lua/tasks/module/cmake.lua
index 5aeca25..7aad611 100644
--- a/lua/tasks/module/cmake.lua
+++ b/lua/tasks/module/cmake.lua
@@ -255,7 +255,7 @@ end
255cmake.params = { 255cmake.params = {
256 target = get_target_names, 256 target = get_target_names,
257 build_type = { 'Debug', 'Release', 'RelWithDebInfo', 'MinSizeRel' }, 257 build_type = { 'Debug', 'Release', 'RelWithDebInfo', 'MinSizeRel' },
258 'cmake', 258 'cmd',
259 'dap_name', 259 'dap_name',
260} 260}
261cmake.condition = function() return Path:new('CMakeLists.txt'):exists() end 261cmake.condition = function() return Path:new('CMakeLists.txt'):exists() end