better windows build system hook , and added appimage workflow to nightly

This commit is contained in:
xgui4
2026-05-29 02:33:29 -04:00
parent 7dcbd0978f
commit fd67f5bbe4
9 changed files with 56 additions and 46 deletions

View File

@@ -4,4 +4,4 @@ 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)
_ = subprocess.run(["powershell", "-ExecutionPolicy", "Bypass", "-File", "\"scripts\\packages.ps1\""], check=True, shell=True)