From 7edb847afb01635f65f0d4e25212975b8673923b Mon Sep 17 00:00:00 2001 From: Maarceeli Date: Sat, 24 May 2025 11:23:02 +0200 Subject: [PATCH] add --noconsole flag --- src/main.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main.py b/src/main.py index 5a61cff..815f705 100644 --- a/src/main.py +++ b/src/main.py @@ -81,7 +81,8 @@ def main(page: ft.Page): "--clean", "--noconfirm", f"--add-data={locales_dir}{os.pathsep}locales", - f"--add-data={assets_dir}{os.pathsep}assets" + f"--add-data={assets_dir}{os.pathsep}assets", + "--noconsole" ] process = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, text=True)