calc-framework/github_download_module.py

14 lines
415 B
Python

#!/usr/bin/env python3
# SPDX-License-Identifier: AGPL-3.0
"""GitHub 下载 — 重导向到 scripts/github_download_module.py。"""
from __future__ import annotations
import subprocess
import sys
from pathlib import Path
if __name__ == "__main__":
target = str(Path(__file__).resolve().parent / "scripts" / "github_download_module.py")
sys.exit(subprocess.call([sys.executable, target, *sys.argv[1:]]))