Skip to content

Commit

Permalink
Merge pull request #82 from bugadani/executable
Browse files Browse the repository at this point in the history
Fix debuggerExecutable being ignored
  • Loading branch information
noppej authored Feb 1, 2024
2 parents 07c7c6e + beeb023 commit a6aeaca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "probe-rs-debugger",
"displayName": "Debugger for probe-rs",
"version": "0.22.1",
"version": "0.22.2",
"publisher": "probe-rs",
"description": "probe-rs Debug Adapter for VS Code.",
"author": {
Expand Down
2 changes: 1 addition & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -534,7 +534,7 @@ function startDebugServer(
// This takes the value from configuration, if set, or
// falls back to the default name.
function debuggerExecutablePath(): string {
let configuration = vscode.workspace.getConfiguration('probe-rs');
let configuration = vscode.workspace.getConfiguration('probe-rs-debugger');

let configuredPath: string = configuration.get('debuggerExecutable') || defaultExecutable();

Expand Down

0 comments on commit a6aeaca

Please sign in to comment.