Skip to content

Commit

Permalink
fix(windows): correct path for codelldb.exe (#101)
Browse files Browse the repository at this point in the history
  • Loading branch information
svermeulen authored Dec 18, 2023
1 parent db17bf4 commit 52d4e9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/rustaceanvim/config/internal.lua
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ local RustaceanDefaultConfig = {
local liblldb_path = compat.joinpath(mason_codelldb_path, 'lldb', 'lib', 'liblldb')
local shell = require('rustaceanvim.shell')
if shell.is_windows() then
codelldb_path = codelldb_path .. 'exe'
codelldb_path = codelldb_path .. '.exe'
liblldb_path = compat.joinpath(mason_codelldb_path, 'lldb', 'bin', 'liblldb.dll')
else
liblldb_path = liblldb_path .. (shell.is_macos() and '.dylib' or '.so')
Expand Down

0 comments on commit 52d4e9a

Please sign in to comment.