We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc47274 commit 5a0041cCopy full SHA for 5a0041c
editors/code/src/installation/server.ts
@@ -85,10 +85,10 @@ function shouldDownloadServer(
85
/**
86
* Enforcing no reentrancy for this is best-effort.
87
*/
88
-const downloadServer = notReentrant(async function downloadServer(
+const downloadServer = notReentrant(async (
89
source: ArtifactSource.GithubRelease,
90
config: Config,
91
-): Promise<null | string> {
+): Promise<null | string> => {
92
try {
93
const releaseInfo = await fetchArtifactReleaseInfo(source.repo, source.file, source.tag);
94
0 commit comments