Skip to content

Commit

Permalink
Fix pipeTransport pipeArgs not being expanded (#77)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlmightyLaxz authored Sep 13, 2024
1 parent 74bc012 commit b110de0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/coreclrDebug/activate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ export class DebugAdapterExecutableFactory implements vscode.DebugAdapterDescrip
args.push(pipeTransport.pipeProgram);
}
if (pipeTransport.pipeArgs) {
args.push(pipeTransport.pipeArgs);
args.push(...pipeTransport.pipeArgs);
}
if (pipeTransport.pipeCwd) {
options.cwd = pipeTransport.pipeCwd;
Expand Down

0 comments on commit b110de0

Please sign in to comment.