mirror of
https://github.com/xgui4/LCE-Qt-Launcher.git
synced 2026-07-16 06:10:50 +00:00
19 lines
356 B
Python
19 lines
356 B
Python
import os
|
|
import subprocess
|
|
|
|
|
|
if os.name == "posix":
|
|
_ = subprocess.run("./scripts/build.sh", check=True)
|
|
if os.name == "nt":
|
|
_ = subprocess.run(
|
|
[
|
|
"powershell",
|
|
"-ExecutionPolicy",
|
|
"Bypass",
|
|
"-File",
|
|
"scripts\\build.ps1",
|
|
],
|
|
check=True,
|
|
shell=True,
|
|
)
|