mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-18 06:21:36 +00:00
fix(release): allow larger plugin publication manifests (#105800)
This commit is contained in:
@@ -1090,7 +1090,7 @@ describe("plugin publication artifact", () => {
|
||||
it("caps publication JSON and tarball members before ZIP expansion", () => {
|
||||
const fixture = createFixture();
|
||||
const manifest = readFileSync(fixture.created.manifestPath);
|
||||
const oversizedManifest = Buffer.alloc(2 * 1024 * 1024 + 1, 0x20);
|
||||
const oversizedManifest = Buffer.alloc(4 * 1024 * 1024 + 1, 0x20);
|
||||
|
||||
replaceArtifactZip(fixture, [
|
||||
{ bytes: fixture.tarball, name: TARBALL_NAME },
|
||||
|
||||
Reference in New Issue
Block a user