This commit is contained in:
2026-06-13 22:47:31 +02:00
parent add3da5177
commit d1446fc452
8032 changed files with 2650751 additions and 1551 deletions

View File

@@ -6,6 +6,9 @@ block_cipher = None
import os
root = os.path.abspath(os.getcwd())
_icon = os.path.join(root, "assets", "aza_main_light.ico")
if not os.path.isfile(_icon):
_icon = os.path.join(root, "logo.ico")
a = Analysis(
[os.path.join(root, "aza_admin_control_shell.py")],
@@ -38,4 +41,5 @@ exe = EXE(
console=False,
disable_windowed_traceback=False,
argv_emulation=False,
icon=_icon if os.path.isfile(_icon) else None,
)