Skip to content

Commit 184106d

Browse files
committed
Fix: suppression du flag --script dans l'engine cx_freeze pour éviter les erreurs d'insertion d'arguments
1 parent a42dbe3 commit 184106d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

engines/cx_freeze/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ def build_command(self, context: BuildContext) -> list[str]:
121121
if source and destination:
122122
cmd.extend(["--include-files", f"{source}={destination}"])
123123

124-
cmd.extend(["--script", context.entry_point])
124+
cmd.append(context.entry_point)
125125
return cmd
126126

127127
def environment(self) -> Optional[dict[str, str]]:

0 commit comments

Comments
 (0)