diff options
| author | Mercvajler, Mihael <mihael.mercvajler@jungheinrich.at> | 2022-11-25 22:32:25 +0100 |
|---|---|---|
| committer | Hennadii Chernyshchyk <genaloner@gmail.com> | 2022-11-25 23:44:28 +0200 |
| commit | 87c9b7c3f82b7d950064802976ab36bdf30cdc2c (patch) | |
| tree | 12123758c8b2a98ebe1ad123c6732e809d6c10fc | |
| parent | d4b683739e4f1b530eb66e0783a1e3dad5e4b21b (diff) | |
| download | neovim-tasks-87c9b7c3f82b7d950064802976ab36bdf30cdc2c.tar.gz neovim-tasks-87c9b7c3f82b7d950064802976ab36bdf30cdc2c.zip | |
Fix typo in cmake.params: "cmake" -> "cmd"
| -rw-r--r-- | lua/tasks/module/cmake.lua | 2 |
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 | |||
| 255 | cmake.params = { | 255 | cmake.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 | } |
| 261 | cmake.condition = function() return Path:new('CMakeLists.txt'):exists() end | 261 | cmake.condition = function() return Path:new('CMakeLists.txt'):exists() end |
