uncommented stream close

This commit is contained in:
Dolan Miu
2016-07-04 19:05:48 +01:00
parent c704db0653
commit 6b21a8229e

View File

@ -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();
}
}