From b44f5c69e1a0530b4fd28642f5ea6da9fed63b08 Mon Sep 17 00:00:00 2001 From: Jesus Rodriguez Date: Wed, 10 May 2017 12:38:43 +0200 Subject: [PATCH] build(aio): make less verbose tools --- aio/tools/example-zipper/exampleZipper.js | 4 ---- 1 file changed, 4 deletions(-) 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; });