Skip to content

Commit d73f001

Browse files
committed
Add version info while downloading
1 parent 6bf616f commit d73f001

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

extensions/ql-vscode/src/distribution.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ class ExtensionSpecificDistributionManager {
345345

346346
const contentLength = assetStream.headers.get('content-length');
347347
const totalNumBytes = contentLength ? parseInt(contentLength, 10) : undefined;
348-
reportStreamProgress(assetStream.body, 'Downloading CodeQL CLI…', totalNumBytes, progressCallback);
348+
reportStreamProgress(assetStream.body, `Downloading CodeQL CLI ${release.name}…`, totalNumBytes, progressCallback);
349349

350350
await new Promise((resolve, reject) =>
351351
assetStream.body.pipe(archiveFile)

0 commit comments

Comments
 (0)