#!/usr/bin/env python3 from __future__ import annotations import subprocess import sys from pathlib import Path ROOT = Path(__file__).resolve().parents[1] def main() -> int: target = ROOT / "tools" / "run_deployment_checklist_v1.py" argv = [sys.executable, str(target), *sys.argv[1:]] raise SystemExit(subprocess.run(argv, cwd=ROOT).returncode) if __name__ == "__main__": raise SystemExit(main())