diff --git a/dist/index.js b/dist/index.js index 25b27e74..42064d30 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 37a467df..e05e1e12 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)