Files
LCE-Qt-Launcher/run.py

7 lines
184 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)