Skip to content

Commit 1ec2ab4

Browse files
committed
bug fix - rename variable
1 parent f59902a commit 1ec2ab4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/client/debugger/DebugClients/LocalDebugClient.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ export class LocalDebugClient extends DebugClient {
185185
vsDebugOptions = this.args.debugOptions.filter(opt => VALID_DEBUG_OPTIONS.indexOf(opt) >= 0).join(',');
186186
}
187187
// 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') {
188+
if (this.args.externalConsole === true || this.args.console === 'integratedTerminal' || this.args.console === 'externalTerminal') {
189189
vsDebugOptions = vsDebugOptions.split(',').filter(opt => opt !== 'RedirectOutput').join(',');
190190
}
191191

0 commit comments

Comments
 (0)