diff options
author | Veetaha <[email protected]> | 2020-03-16 10:18:30 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2020-03-16 10:18:30 +0000 |
commit | fc47274541b5f4e9c8406c4dd401392129845396 (patch) | |
tree | 3b8dc93a3864ea1aad34672afc69108c5760a2e0 /editors | |
parent | d38d59fed810e702d7473cbb8485b26f921889c6 (diff) |
vscode-postrefactor: fix syntax error
Diffstat (limited to 'editors')
-rw-r--r-- | editors/code/src/installation/extension.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/code/src/installation/extension.ts b/editors/code/src/installation/extension.ts index e0aa5317d..eea6fded2 100644 --- a/editors/code/src/installation/extension.ts +++ b/editors/code/src/installation/extension.ts | |||
@@ -112,7 +112,7 @@ async function askToDownloadProperExtensionVersion(config: Config, reason = "") | |||
112 | const tryDownloadNightlyExtension = notReentrant(async ( | 112 | const tryDownloadNightlyExtension = notReentrant(async ( |
113 | config: Config, | 113 | config: Config, |
114 | shouldDownload: (releaseInfo: ArtifactReleaseInfo) => boolean = () => true | 114 | shouldDownload: (releaseInfo: ArtifactReleaseInfo) => boolean = () => true |
115 | ): Promise<never | void> { | 115 | ): Promise<never | void> => { |
116 | const vsixSource = config.nightlyVsixSource; | 116 | const vsixSource = config.nightlyVsixSource; |
117 | try { | 117 | try { |
118 | const releaseInfo = await fetchArtifactReleaseInfo(vsixSource.repo, vsixSource.file, vsixSource.tag); | 118 | const releaseInfo = await fetchArtifactReleaseInfo(vsixSource.repo, vsixSource.file, vsixSource.tag); |