Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use GNU_FORMAT in tarfile to avoid '././@PaxHeader' in archives #29

Merged
merged 1 commit into from Apr 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion tdworkflow/util.py
Expand Up @@ -16,7 +16,7 @@ def archive_files(target_dir: str, exclude_patterns: List[str]) -> io.BytesIO:

target_dir_path = Path(target_dir)
_bytes = io.BytesIO()
with tarfile.open(mode="w:gz", fileobj=_bytes) as tar:
with tarfile.open(mode="w:gz", fileobj=_bytes, format=tarfile.GNU_FORMAT) as tar:
for current_dir, directories, files in os.walk(target_dir_path):
for file_or_dir in [*directories, *files]:
file_path = Path(os.path.join(current_dir, file_or_dir))
Expand Down