diff --git a/run.py b/run.py index 2d1c9b8..e83de08 100644 --- a/run.py +++ b/run.py @@ -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) \ No newline at end of file + _ = subprocess.run("scripts\\run.cmd", check=True, shell=True) \ No newline at end of file