Skip to content

Commit

Permalink
v0.21.x: fix wrong checking. === !==
Browse files Browse the repository at this point in the history
  • Loading branch information
mtxr committed Dec 13, 2019
1 parent adc00c4 commit 48bb8f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/extension/language-client/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ export class SQLToolsLanguageClient implements SQLTools.LanguageClientInterface
};
const debugOptions = runOptions;

if (process.env.NODE_ENV === 'production') {
if (process.env.NODE_ENV !== 'production') {
debugOptions.options = {
...runOptions.options,
execArgv: ['--nolazy', '--inspect=6010']
Expand Down

0 comments on commit 48bb8f6

Please sign in to comment.