From 24442a0fdbfe930caf86b06ea6369f6711f083d2 Mon Sep 17 00:00:00 2001 From: elijahcroft Date: Wed, 2 Sep 2026 10:33:48 -0700 Subject: [PATCH] Fix pyinstaller build --- engine/build_tools.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/engine/build_tools.py b/engine/build_tools.py index c767bf8..9a0b683 100644 --- a/engine/build_tools.py +++ b/engine/build_tools.py @@ -148,6 +148,8 @@ def _build_pyinstaller(name: str, directory: Path, log_queue: "Queue[Optional[st "--specpath", str(directory), f"--add-data={directory / 'game.absp'!s}{os.pathsep}.", + f"--add-data={directory / 'engine' / 'nut'}{os.pathsep}engine/nut/", + f"--add-data={directory / 'engine' / 'tcl'}{os.pathsep}engine/tcl/", ] if (directory / "scripts").exists():