()
| 120 | |
| 121 | |
| 122 | def main() -> None: |
| 123 | parser = argparse.ArgumentParser( |
| 124 | description="Fetch and stage Codex Desktop Sparkle updates." |
| 125 | ) |
| 126 | parser.add_argument("output", help="Destination root directory") |
| 127 | run(parser.parse_args()) |
| 128 | |
| 129 | |
| 130 | if __name__ == "__main__": |