8e8f26ae95
The three per-version setup_*_bundle_symlinks.py scripts were logically identical, differing only in the version string. Replace the duplicated logic with a single parameterised script: tools/linux/setup_bundle_symlinks.py <version> The three named scripts are kept as one-liner thin wrappers that forward to the unified script, preserving backwards compatibility.
6 lines
269 B
Python
6 lines
269 B
Python
#!/usr/bin/env python3
|
|
"""Thin wrapper — delegates to setup_bundle_symlinks.py for version 26.01."""
|
|
import subprocess, sys, pathlib
|
|
script = pathlib.Path(__file__).parent / "setup_bundle_symlinks.py"
|
|
sys.exit(subprocess.call([sys.executable, str(script), "26.01"]))
|