From dc82478cd4922de81caf4efe710c1175befc2dd0 Mon Sep 17 00:00:00 2001 From: Austin Sasko Date: Fri, 18 Mar 2022 17:34:38 -0400 Subject: [PATCH] Update index.js --- dist/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dist/index.js b/dist/index.js index 08c5243..c7c0cbc 100644 --- a/dist/index.js +++ b/dist/index.js @@ -6523,7 +6523,7 @@ class DownloadHttpClient { // check if the extract parameter is true, which by default it will be, and if so determine if the file is decompressable and decompress it. // if extract parameter is set to be false, don't even check if its a compressed file, just download the file as-is const gunzip = isGzipped && extract ? true : false; - core.info(`Calling pipeResponseToFile with ${gunzip} as gunzip value and ${isGzipped} as izgzipped value`) + core.info(`Calling pipeResponseToFile with ${gunzip} as gunzip value and ${isGzipped} as izgzipped value ${isGzipped}`) yield this.pipeResponseToFile(response, destinationStream, gunzip); if (gunzip || isAllBytesReceived(response.message.headers['content-length'], yield utils_1.getFileSize(downloadPath))) {