Skip to content

Commit

Permalink
Disable "debuggerPath" as required
Browse files Browse the repository at this point in the history
  • Loading branch information
granitrocky authored and granitrocky committed Jun 2, 2024
1 parent 490a6a1 commit b727954
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 12 deletions.
12 changes: 0 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2306,9 +2306,6 @@
"pipeTransport": {
"description": "%generateOptionsSchema.pipeTransport.description%",
"type": "object",
"required": [
"debuggerPath"
],
"default": {
"pipeCwd": "${workspaceFolder}",
"pipeProgram": "enter the fully qualified path for the pipe program name, for example '/usr/bin/ssh'",
Expand Down Expand Up @@ -2838,9 +2835,6 @@
"pipeTransport": {
"description": "%generateOptionsSchema.pipeTransport.description%",
"type": "object",
"required": [
"debuggerPath"
],
"default": {
"pipeCwd": "${workspaceFolder}",
"pipeProgram": "enter the fully qualified path for the pipe program name, for example '/usr/bin/ssh'",
Expand Down Expand Up @@ -3646,9 +3640,6 @@
"pipeTransport": {
"description": "%generateOptionsSchema.pipeTransport.description%",
"type": "object",
"required": [
"debuggerPath"
],
"default": {
"pipeCwd": "${workspaceFolder}",
"pipeProgram": "enter the fully qualified path for the pipe program name, for example '/usr/bin/ssh'",
Expand Down Expand Up @@ -4178,9 +4169,6 @@
"pipeTransport": {
"description": "%generateOptionsSchema.pipeTransport.description%",
"type": "object",
"required": [
"debuggerPath"
],
"default": {
"pipeCwd": "${workspaceFolder}",
"pipeProgram": "enter the fully qualified path for the pipe program name, for example '/usr/bin/ssh'",
Expand Down
2 changes: 2 additions & 0 deletions src/coreclrDebug/activate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -314,6 +314,8 @@ export class DebugAdapterExecutableFactory implements vscode.DebugAdapterDescrip
}
if (pipeTransport.debuggerArgs) {
args = pipeTransport.debuggerArgs;
} else {
args.push('--interpreter=vscode', '--');
}
if (pipeTransport.pipeProgram) {
args.push(pipeTransport.pipeProgram);
Expand Down

0 comments on commit b727954

Please sign in to comment.