mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-15 06:45:27 +00:00
vscode: fix inversion of askBeforeDownload
This commit is contained in:
parent
2847636d30
commit
de99fa7199
1 changed files with 1 additions and 1 deletions
|
@ -134,7 +134,7 @@ export class Config {
|
||||||
file: prebuiltBinaryName,
|
file: prebuiltBinaryName,
|
||||||
storage: this.ctx.globalState,
|
storage: this.ctx.globalState,
|
||||||
tag: Config.extensionVersion,
|
tag: Config.extensionVersion,
|
||||||
askBeforeDownload: !(this.cfg.get("askBeforeDownload") as boolean),
|
askBeforeDownload: this.cfg.get("askBeforeDownload") as boolean,
|
||||||
repo: {
|
repo: {
|
||||||
name: "rust-analyzer",
|
name: "rust-analyzer",
|
||||||
owner: "rust-analyzer",
|
owner: "rust-analyzer",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue