forked from wxhwwla/calc-framework
14 lines
419 B
Python
14 lines
419 B
Python
#!/usr/bin/env python3
|
|
# SPDX-License-Identifier: AGPL-3.0
|
|
"""GitHub 下载 — 重导向到 scripts/tools/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 / "tools" / "github_download_module.py")
|
|
sys.exit(subprocess.call([sys.executable, target, *sys.argv[1:]]))
|