aboutsummaryrefslogtreecommitdiff
path: root/editors/code/src/installation/download_artifact.ts
diff options
context:
space:
mode:
Diffstat (limited to 'editors/code/src/installation/download_artifact.ts')
-rw-r--r--editors/code/src/installation/download_artifact.ts2
1 files changed, 0 insertions, 2 deletions
diff --git a/editors/code/src/installation/download_artifact.ts b/editors/code/src/installation/download_artifact.ts
index 9996c556f..356723aba 100644
--- a/editors/code/src/installation/download_artifact.ts
+++ b/editors/code/src/installation/download_artifact.ts
@@ -29,7 +29,6 @@ export async function downloadArtifact(
29 29
30 const installationPath = path.join(installationDir, artifactFileName); 30 const installationPath = path.join(installationDir, artifactFileName);
31 31
32 console.time(`Downloading ${artifactFileName}`);
33 await vscode.window.withProgress( 32 await vscode.window.withProgress(
34 { 33 {
35 location: vscode.ProgressLocation.Notification, 34 location: vscode.ProgressLocation.Notification,
@@ -54,5 +53,4 @@ export async function downloadArtifact(
54 ); 53 );
55 } 54 }
56 ); 55 );
57 console.timeEnd(`Downloading ${artifactFileName}`);
58} 56}