don't close packer local packer stream prematurely closes #5

This commit is contained in:
felipe
2017-03-07 13:36:12 +01:00
parent cfdbaf2694
commit 9b9d748477
2 changed files with 18 additions and 3 deletions

View File

@ -14,6 +14,5 @@ export class LocalPacker extends Packer {
pack(path: string): void {
this.stream = fs.createWriteStream(path);
super.pack(this.stream);
this.stream.close();
}
}