add --noconsole flag

This commit is contained in:
Maarceeli 2025-05-24 11:23:02 +02:00
parent 34d8e2516c
commit 7edb847afb
Signed by: Marceeli
GPG key ID: ABC955B3D1495923

View file

@ -81,7 +81,8 @@ def main(page: ft.Page):
"--clean", "--clean",
"--noconfirm", "--noconfirm",
f"--add-data={locales_dir}{os.pathsep}locales", 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) process = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, text=True)