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))) {