We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 066193f commit 996194eCopy full SHA for 996194e
lua/copilot/lsp_binary.lua
@@ -21,7 +21,7 @@ local function ensure_directory_exists(path)
21
if vim.fn.has("win32") > 0 then
22
cmd = 'cmd /c "mkdir "' .. dir_path:gsub("\\", "\\\\"):gsub("/", "\\\\")
23
else
24
- cmd = "mkdir -p " .. vim.fn.shellescape(dir_path)
+ cmd = "mkdir " .. vim.fn.shellescape(dir_path)
25
end
26
27
logger.trace("Creating directory with command: " .. cmd)
0 commit comments