From 6b21a8229e9829069a7b2005ae66d2ceb6006279 Mon Sep 17 00:00:00 2001 From: Dolan Miu Date: Mon, 4 Jul 2016 19:05:48 +0100 Subject: [PATCH] uncommented stream close --- ts/export/packer/local.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts/export/packer/local.ts b/ts/export/packer/local.ts index 5124a0ac39..afdf1c5255 100644 --- a/ts/export/packer/local.ts +++ b/ts/export/packer/local.ts @@ -14,6 +14,6 @@ export class LocalPacker extends Packer { pack(path: string): void { this.stream = fs.createWriteStream(path); super.pack(this.stream); - //this.stream.close(); + this.stream.close(); } } \ No newline at end of file