(freeze_info: dict | None, dst_dir: str)
| 270 | |
| 271 | |
| 272 | def write_frozen(freeze_info: dict | None, dst_dir: str): |
| 273 | if not freeze_info or "conda" not in freeze_info: |
| 274 | return |
| 275 | frozen_path = join(dst_dir, "frozen") |
| 276 | with open(frozen_path, "w") as ff: |
| 277 | json.dump(freeze_info["conda"], ff) |
| 278 | |
| 279 | |
| 280 | def write_repodata_record(info: dict, dst_dir: str): |