Skip to content

Commit 906e1d3

Browse files
committed
fixes linter error - don't compare boolean value to a boolean
1 parent b3abd40 commit 906e1d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Extension/src/Debugger/attachToProcess.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ export class RemoteAttachPicker {
132132
}
133133

134134
// If the pipeTransport settings indicate "quoteArgs": "false", we need to skip the outer quotes.
135-
if (quoteArgs === false) {
135+
if (!quoteArgs) {
136136
outerQuote = ``;
137137
}
138138

0 commit comments

Comments
 (0)