From 2d32e97cf94ce34e4cb3465c4f5de7b6574f54b5 Mon Sep 17 00:00:00 2001 From: Veetaha Date: Mon, 22 Jun 2020 19:50:57 +0300 Subject: Hotfix skipping the first chunks of the artifacts --- editors/code/src/net.ts | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'editors/code/src') diff --git a/editors/code/src/net.ts b/editors/code/src/net.ts index 0e7dd29c2..9debdc57b 100644 --- a/editors/code/src/net.ts +++ b/editors/code/src/net.ts @@ -114,15 +114,16 @@ async function downloadFile( log.debug("Downloading file of", totalBytes, "bytes size from", url, "to", destFilePath); - let readBytes = 0; - res.body.on("data", (chunk: Buffer) => { - readBytes += chunk.length; - onProgress(readBytes, totalBytes); - }); - // Put the artifact into a temporary folder to prevent partially downloaded files when user kills vscode await withTempFile(async tempFilePath => { const destFileStream = fs.createWriteStream(tempFilePath, { mode }); + + let readBytes = 0; + res.body.on("data", (chunk: Buffer) => { + readBytes += chunk.length; + onProgress(readBytes, totalBytes); + }); + await pipeline(res.body, destFileStream); await new Promise(resolve => { destFileStream.on("close", resolve); -- cgit v1.2.3