[autofix.ci] apply automated fixes

This commit is contained in:
autofix-ci[bot]
2026-03-25 05:20:02 +00:00
committed by GitHub
parent 4763c80a1b
commit 2ce4c21be2
6 changed files with 42 additions and 3104 deletions

View File

@ -49,9 +49,7 @@ class ArchiveSandboxStorage(SandboxStorage):
(
pipeline(sandbox)
.add(["curl", "-fsSL", download_url, "-o", archive], error_message="Failed to download archive")
.add(
["sh", "-c", 'tar -xzf "$1" 2>/dev/null; exit $?', "sh", archive], error_message="Failed to extract"
)
.add(["sh", "-c", 'tar -xzf "$1" 2>/dev/null; exit $?', "sh", archive], error_message="Failed to extract")
.add(["rm", archive], error_message="Failed to cleanup")
.execute(timeout=_ARCHIVE_TIMEOUT, raise_on_error=True)
)