mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-27 05:23:24 +00:00
fixed lint warning
This commit is contained in:
parent
11e9e4b1fb
commit
06b7175650
1 changed files with 1 additions and 1 deletions
|
@ -56,7 +56,7 @@ export class Cargo {
|
||||||
}
|
}
|
||||||
|
|
||||||
public async executableFromArgs(args: string[]): Promise<string> {
|
public async executableFromArgs(args: string[]): Promise<string> {
|
||||||
let cargoArgs = [...args]; // to remain args unchanged
|
const cargoArgs = [...args]; // to remain args unchanged
|
||||||
cargoArgs.push("--message-format=json");
|
cargoArgs.push("--message-format=json");
|
||||||
|
|
||||||
const artifacts = await this.artifactsFromArgs(cargoArgs);
|
const artifacts = await this.artifactsFromArgs(cargoArgs);
|
||||||
|
|
Loading…
Reference in a new issue