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