mirror of
https://github.com/xgui4/LCE-Qt-Launcher.git
synced 2026-07-16 05:00:49 +00:00
7 lines
193 B
Python
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) |