some changes

This commit is contained in:
xgui4
2026-04-21 09:22:33 -04:00
parent 0385712bc4
commit 49d860c19c

4
run.py
View File

@@ -2,6 +2,6 @@ import os
import subprocess
if os.name == "posix":
subprocess.run("./scripts/run.sh", check=True)
_ = subprocess.run("./scripts/run.sh", check=True)
if os.name == "nt":
subprocess.run("scripts/run.cmd", check=True, shell=True)
_ = subprocess.run("scripts\\run.cmd", check=True, shell=True)