From 73799640481c269a5aad408c99a22592d914fb1b Mon Sep 17 00:00:00 2001 From: Veetaha Date: Mon, 17 Feb 2020 22:09:44 +0200 Subject: vscode: press ; to respect semicolons --- editors/code/src/installation/download_artifact.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'editors/code/src/installation') diff --git a/editors/code/src/installation/download_artifact.ts b/editors/code/src/installation/download_artifact.ts index de655f8f4..9996c556f 100644 --- a/editors/code/src/installation/download_artifact.ts +++ b/editors/code/src/installation/download_artifact.ts @@ -15,7 +15,7 @@ import { throttle } from "throttle-debounce"; * of the artifact as `displayName`. */ export async function downloadArtifact( - {downloadUrl, releaseName}: ArtifactReleaseInfo, + { downloadUrl, releaseName }: ArtifactReleaseInfo, artifactFileName: string, installationDir: string, displayName: string, @@ -23,7 +23,7 @@ export async function downloadArtifact( await fs.mkdir(installationDir).catch(err => assert.strictEqual( err?.code, "EEXIST", - `Couldn't create directory "${installationDir}" to download `+ + `Couldn't create directory "${installationDir}" to download ` + `${artifactFileName} artifact: ${err.message}` )); -- cgit v1.2.3