aboutsummaryrefslogtreecommitdiff
path: root/editors/code/src
diff options
context:
space:
mode:
authorVeetaha <[email protected]>2020-03-16 10:18:30 +0000
committerGitHub <[email protected]>2020-03-16 10:18:30 +0000
commitfc47274541b5f4e9c8406c4dd401392129845396 (patch)
tree3b8dc93a3864ea1aad34672afc69108c5760a2e0 /editors/code/src
parentd38d59fed810e702d7473cbb8485b26f921889c6 (diff)
vscode-postrefactor: fix syntax error
Diffstat (limited to 'editors/code/src')
-rw-r--r--editors/code/src/installation/extension.ts2
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 = "")
112const tryDownloadNightlyExtension = notReentrant(async ( 112const 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);