mirror of
https://github.com/xgui4/LCE-Qt-Launcher.git
synced 2026-07-16 03:50:39 +00:00
7 lines
203 B
Python
7 lines
203 B
Python
import os
|
|
import subprocess
|
|
|
|
if os.name == "posix":
|
|
_ = subprocess.run("./scripts/packages.sh", check=True)
|
|
if os.name == "nt":
|
|
_ = subprocess.run("scripts\\packages.cmd", check=True, shell=True) |