Skip to content

Commit 9db7c70

Browse files
committed
Fixed CXFreezeEngine build command by adding target file
1 parent 690a704 commit 9db7c70

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

ENGINES/cx_freeze/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,9 @@ def build_command(self, gui, file: str) -> list[str]:
100100
if hasattr(self, "_selected_icon") and self._selected_icon:
101101
cmd.extend(["--icon", self._selected_icon])
102102

103+
# Add the target file
104+
cmd.append(file)
105+
103106
return cmd
104107

105108
except Exception as e:

TODO.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11

2-
1- reparer l'erreur comme quoi le build commande des engine ne fonctionne pas .
2+
1- [x] reparer l'erreur comme quoi le build commande des engine ne fonctionne pas .
33
2- mettre à jours les documentations dans docs/.
44
3- revoir le readme.md, contributing.md, and supported_matrix.md .

0 commit comments

Comments
 (0)