We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 78caef9 commit 34c191bCopy full SHA for 34c191b
scripts/zip_datasets.py
@@ -41,7 +41,7 @@ def main() -> None:
41
with zipfile.ZipFile(archive_path, mode="w", compression=zipfile.ZIP_DEFLATED) as zf:
42
for rel_path in include_paths:
43
abs_path = repo_root / rel_path
44
- save_path = "PBC" / rel_path
+ save_path = rel_path
45
# arcname ensures paths inside zip are relative to project root
46
zf.write(abs_path, arcname=str(save_path))
47
0 commit comments