From 4a81c80cad18248c2990589f6959d8d3c8361add Mon Sep 17 00:00:00 2001 From: Alex Weininger Date: Mon, 11 Apr 2022 14:07:52 -0700 Subject: [PATCH] Don't use Readable.wrap --- appservice/src/deploy/runWithZipStream.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appservice/src/deploy/runWithZipStream.ts b/appservice/src/deploy/runWithZipStream.ts index 4a34670fbc..77439a3d94 100644 --- a/appservice/src/deploy/runWithZipStream.ts +++ b/appservice/src/deploy/runWithZipStream.ts @@ -74,7 +74,7 @@ export async function runWithZipStream(context: IActionContext, options: { } zipFile.end(); - zipStream = new Readable().wrap(zipFile.outputStream); + zipStream = zipFile.outputStream as Readable; } await callback(zipStream);