Skip to content

Commit ba713fb

Browse files
fix: allow larger directories to be compressed, test in plugin-source (#649)
1 parent 27dde16 commit ba713fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/client/metadataApiDeploy.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,7 @@ export class MetadataApiDeploy extends MetadataTransfer<MetadataApiDeployStatus,
409409
const zip = createArchive('zip', { zlib: { level: 9 } });
410410
// anywhere not at the root level is fine
411411
zip.directory(this.options.mdapiPath, 'zip');
412-
await zip.finalize();
412+
void zip.finalize();
413413
return stream2buffer(zip);
414414
}
415415
// read the zip into a buffer

0 commit comments

Comments
 (0)