Files
LCE-Qt-Launcher/run.py
2026-04-21 09:22:33 -04:00

7 lines
193 B
Python

import os
import subprocess
if os.name == "posix":
_ = subprocess.run("./scripts/run.sh", check=True)
if os.name == "nt":
_ = subprocess.run("scripts\\run.cmd", check=True, shell=True)