mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-13 05:38:46 +00:00
vscode-postrefactor: fix syntax error
This commit is contained in:
parent
d38d59fed8
commit
fc47274541
1 changed files with 1 additions and 1 deletions
|
@ -112,7 +112,7 @@ async function askToDownloadProperExtensionVersion(config: Config, reason = "")
|
|||
const tryDownloadNightlyExtension = notReentrant(async (
|
||||
config: Config,
|
||||
shouldDownload: (releaseInfo: ArtifactReleaseInfo) => boolean = () => true
|
||||
): Promise<never | void> {
|
||||
): Promise<never | void> => {
|
||||
const vsixSource = config.nightlyVsixSource;
|
||||
try {
|
||||
const releaseInfo = await fetchArtifactReleaseInfo(vsixSource.repo, vsixSource.file, vsixSource.tag);
|
||||
|
|
Loading…
Reference in a new issue