diff --git a/modules/adapters/elixir.py b/modules/adapters/elixir.py index 7b45682..e4bd6a9 100644 --- a/modules/adapters/elixir.py +++ b/modules/adapters/elixir.py @@ -14,5 +14,5 @@ class Elixir(dap.Adapter): async def start(self, console: dap.Console, configuration: dap.ConfigurationExpanded): install_path = self.installer.install_path() extension = 'bat' if core.platform.windows else 'sh' - command = [f'{install_path}/elixir-ls-release/debugger.{extension}'] + command = [f'{install_path}/elixir-ls-release/debug_adapter.{extension}'] return dap.StdioTransport(command, stderr=console.error)