From b8ea91ae2d94f11f003df6ab36c3761dd2932362 Mon Sep 17 00:00:00 2001 From: Emil Lauridsen Date: Wed, 3 Apr 2019 11:01:34 +0200 Subject: Fix eslint errors --- editors/code/src/commands/cargo_watch.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'editors') diff --git a/editors/code/src/commands/cargo_watch.ts b/editors/code/src/commands/cargo_watch.ts index 6b6113017..32bd38a1c 100644 --- a/editors/code/src/commands/cargo_watch.ts +++ b/editors/code/src/commands/cargo_watch.ts @@ -52,7 +52,7 @@ export class CargoWatchProvider { args += ' ' + Server.config.cargoWatchOptions.checkArguments; } // Windows handles arguments differently than the unix-likes, so we need to wrap the args in double quotes - if (process.platform == "win32") { + if (process.platform === 'win32') { args = '"' + args + '"'; } -- cgit v1.2.3