diff --git a/dist/index.js b/dist/index.js index 25b27e7..42064d3 100644 --- a/dist/index.js +++ b/dist/index.js @@ -8477,7 +8477,6 @@ function downloadFile(url, fileStream) { response.on('error', err => { reject(err); }); - // response.pipe(fileStream) }); } catch (err) { diff --git a/src/github-api-helper.ts b/src/github-api-helper.ts index 37a467d..e05e1e1 100644 --- a/src/github-api-helper.ts +++ b/src/github-api-helper.ts @@ -155,7 +155,6 @@ function downloadFile(url: string, fileStream: WriteStream): Promise { response.on('error', err => { reject(err) }) - // response.pipe(fileStream) }) } catch (err) { reject(err)