diff --git a/aio/tools/example-zipper/exampleZipper.js b/aio/tools/example-zipper/exampleZipper.js index f4f1cbcc8a..dace4b80f8 100644 --- a/aio/tools/example-zipper/exampleZipper.js +++ b/aio/tools/example-zipper/exampleZipper.js @@ -35,10 +35,6 @@ class ExampleZipper { let output = fs.createWriteStream(zipFileName); let archive = archiver('zip'); - output.on('close', function () { - console.log('zip created: ' + zipFileName + ' (' + archive.pointer() + ' total bytes)'); - }); - archive.on('error', function (err) { throw err; });