mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-13 05:38:46 +00:00
Fix eslint errors
This commit is contained in:
parent
3a79490187
commit
b8ea91ae2d
1 changed files with 1 additions and 1 deletions
|
@ -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 + '"';
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue