mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-08-31 07:37:30 +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;
|
args += ' ' + Server.config.cargoWatchOptions.checkArguments;
|
||||||
}
|
}
|
||||||
// Windows handles arguments differently than the unix-likes, so we need to wrap the args in double quotes
|
// 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 + '"';
|
args = '"' + args + '"';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue