1 parent f59902a commit 1ec2ab4Copy full SHA for 1ec2ab4
1 file changed
src/client/debugger/DebugClients/LocalDebugClient.ts
@@ -185,7 +185,7 @@ export class LocalDebugClient extends DebugClient {
185
vsDebugOptions = this.args.debugOptions.filter(opt => VALID_DEBUG_OPTIONS.indexOf(opt) >= 0).join(',');
186
}
187
// If internal or external console, then don't re-direct the output
188
- if (this.args.externalConsole === true || this.args.console === 'integratedTerminal' || this.args.console === 'externalTermainal') {
+ if (this.args.externalConsole === true || this.args.console === 'integratedTerminal' || this.args.console === 'externalTerminal') {
189
vsDebugOptions = vsDebugOptions.split(',').filter(opt => opt !== 'RedirectOutput').join(',');
190
191
0 commit comments