From 193690df197e3ae1ef243f999d587ad7207da5cd Mon Sep 17 00:00:00 2001 From: Victor Date: Thu, 28 Nov 2024 19:47:40 -0500 Subject: [PATCH] simple run script --- run.ps1 | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 run.ps1 diff --git a/run.ps1 b/run.ps1 new file mode 100644 index 00000000..57142dba --- /dev/null +++ b/run.ps1 @@ -0,0 +1,6 @@ +& ./.venv/Scripts/python.exe ./build_style.py +if ($args -contains "-debug") { + & ./.venv/Scripts/python.exe ./source/main.py -debug +} else { + & ./.venv/Scripts/python.exe ./source/main.py +} \ No newline at end of file