Skip to content

Commit 34c191b

Browse files
committed
fix: Correcting save_path in zip archive
1 parent 78caef9 commit 34c191b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/zip_datasets.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def main() -> None:
4141
with zipfile.ZipFile(archive_path, mode="w", compression=zipfile.ZIP_DEFLATED) as zf:
4242
for rel_path in include_paths:
4343
abs_path = repo_root / rel_path
44-
save_path = "PBC" / rel_path
44+
save_path = rel_path
4545
# arcname ensures paths inside zip are relative to project root
4646
zf.write(abs_path, arcname=str(save_path))
4747

0 commit comments

Comments
 (0)