From c33804c7476d4646cd055aab1fa6b6bf881b2660 Mon Sep 17 00:00:00 2001 From: Seth Samuel Date: Wed, 4 Dec 2024 22:46:59 +1300 Subject: [PATCH] added command to build with no console on windows and optimise on build --- createExe.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/createExe.sh b/createExe.sh index 67efab4..32b0fe2 100644 --- a/createExe.sh +++ b/createExe.sh @@ -1,2 +1,3 @@ pyinstaller.exe --add-data .\GAME_METHODS\*:.\GAME_METHODS\ --onefile .\OutGaugeInterpreter.py +pyinstaller.exe --add-data .\GAME_METHODS\*:.\GAME_METHODS\ --onefile --noconsole --optimize 2 .\OutGaugeInterpreter.py pyinstaller --add-data ./GAME_METHODS/*:./GAME_METHODS/ --onefile ./OutGaugeInterpreter.py \ No newline at end of file