update setup for newer cx_Freeze #2

This commit is contained in:
Fabian Dill 2021-04-27 05:26:27 +02:00
parent fb8229fda5
commit e04fbd1d77
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ exes = []
for script, scriptname in scripts.items(): for script, scriptname in scripts.items():
exes.append(cx_Freeze.Executable( exes.append(cx_Freeze.Executable(
script=script, script=script,
targetName=scriptname + ("" if sys.platform == "linux" else ".exe"), target_name=scriptname + ("" if sys.platform == "linux" else ".exe"),
icon=icon, icon=icon,
)) ))