Skip to content

Commit

Permalink
ADCM-6210 Fix bundle generation
Browse files Browse the repository at this point in the history
  • Loading branch information
Sealwing committed Dec 25, 2024
1 parent 103f342 commit 7c61527
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration/bundle.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def pack_bundle(from_dir: Path, to: Path) -> Path:

with TarFile(name=archive, mode="w") as tar:
for entry in from_dir.iterdir():
tar.add(entry)
tar.add(entry, arcname=entry.name)

return archive

Expand Down

0 comments on commit 7c61527

Please sign in to comment.