argv_builder.py
python
sha256:8461d44b77376fbf06fa7c3e085d309e3010fd8d5886d63c63e69ce118811ad4
docs: record AFF-b feature-tip SHAs after AFF-b-ISR commit.
Human
4 days ago
| 1 | """Child verify-script argv builder (§K9.5 step 6c).""" |
| 2 | |
| 3 | from __future__ import annotations |
| 4 | |
| 5 | |
| 6 | def build_verify_argv( |
| 7 | *, |
| 8 | verify_script: str, |
| 9 | manifest_rel: str, |
| 10 | step_id: str, |
| 11 | policy_rel: str, |
| 12 | ) -> list[str]: |
| 13 | """Build argv for domain verify script — always includes ``--policy``.""" |
| 14 | return [ |
| 15 | verify_script, |
| 16 | "--manifest", |
| 17 | manifest_rel, |
| 18 | "--step", |
| 19 | step_id, |
| 20 | "--policy", |
| 21 | policy_rel, |
| 22 | ] |
File History
1 commit
sha256:8461d44b77376fbf06fa7c3e085d309e3010fd8d5886d63c63e69ce118811ad4
docs: record AFF-b feature-tip SHAs after AFF-b-ISR commit.
Human
4 days ago