diff options
-rw-r--r-- | editors/code/src/commands/cargo_watch.ts | 2 |
1 files changed, 1 insertions, 1 deletions
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 { | |||
52 | args += ' ' + Server.config.cargoWatchOptions.checkArguments; | 52 | args += ' ' + Server.config.cargoWatchOptions.checkArguments; |
53 | } | 53 | } |
54 | // Windows handles arguments differently than the unix-likes, so we need to wrap the args in double quotes | 54 | // Windows handles arguments differently than the unix-likes, so we need to wrap the args in double quotes |
55 | if (process.platform == "win32") { | 55 | if (process.platform === 'win32') { |
56 | args = '"' + args + '"'; | 56 | args = '"' + args + '"'; |
57 | } | 57 | } |
58 | 58 | ||