Compare commits

..

2 Commits

Author SHA1 Message Date
copilot-swe-agent[bot]
4592d0881f fix(e2e): regenerate sample.tgz with deterministic gzip header (mtime=0, no FNAME)
Co-authored-by: klboke <18591662+klboke@users.noreply.github.com>
2026-03-09 03:49:31 +00:00
copilot-swe-agent[bot]
45d38310ac Initial plan 2026-03-09 03:46:03 +00:00
3 changed files with 2 additions and 1 deletions

View File

@@ -4,6 +4,7 @@ test-results/
__pycache__/
fixtures/archive-tmp/
fixtures/zip-tmp/
fixtures/sample.docx
fixtures/sample.xlsx
fixtures/sample.pptx

Binary file not shown.

View File

@@ -87,7 +87,7 @@ try {
ensureArchive('sample.7z', out => {
try {
execFileSync('7z', ['a', '-bd', '-y', out, 'inner.txt'], { cwd: archiveWork });
execFileSync('7z', ['a', '-bd', '-y', out, 'inner.txt'], { cwd: archiveWork, stdio: 'ignore' });
} catch {
execFileSync('bsdtar', ['-a', '-cf', out, 'inner.txt'], { cwd: archiveWork });
}