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 e95459a commit e5f1861Copy full SHA for e5f1861
lldb/tools/lldb-dap/src-ts/debug-adapter-factory.ts
@@ -183,7 +183,8 @@ export class LLDBDapDescriptorFactory
183
static async showLLDBDapNotFoundMessage(path?: string) {
184
const openSettingsAction = "Open Settings";
185
const callbackValue = await vscode.window.showErrorMessage(
186
- `Debug adapter path: ${path} is not a valid file`,
+ path ? `Debug adapter path: ${path} is not a valid file` :
187
+ `Debug adapter executable not found`,
188
openSettingsAction,
189
);
190
0 commit comments