Skip to content

Commit b110de0

Browse files
authored
Fix pipeTransport pipeArgs not being expanded (#77)
1 parent 74bc012 commit b110de0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/coreclrDebug/activate.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ export class DebugAdapterExecutableFactory implements vscode.DebugAdapterDescrip
325325
args.push(pipeTransport.pipeProgram);
326326
}
327327
if (pipeTransport.pipeArgs) {
328-
args.push(pipeTransport.pipeArgs);
328+
args.push(...pipeTransport.pipeArgs);
329329
}
330330
if (pipeTransport.pipeCwd) {
331331
options.cwd = pipeTransport.pipeCwd;

0 commit comments

Comments
 (0)