Files
LCE-Qt-Launcher/run.py
2026-05-16 00:10:28 -04:00

8 lines
194 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)