From 6619a172c7c1280b75c9a88cd9d4bf1d8ea0b98b Mon Sep 17 00:00:00 2001 From: Sven Sager Date: Wed, 15 Nov 2023 13:43:51 +0100 Subject: [PATCH] build: Wrong values in make.bat file for windows During the upgrade of the build system this error was merged. Missing app-data files and wrong PyInstaller format. --- make.bat | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/make.bat b/make.bat index e9c2efa..4975839 100644 --- a/make.bat +++ b/make.bat @@ -61,9 +61,13 @@ goto end %PYTHON% -m PyInstaller -n "%APP_NAME%" ^ --add-data="dist/bundled-libraries.md;%PACKAGE%\open-source-licenses" ^ --add-data="dist/open-source-licenses.*;%PACKAGE%\open-source-licenses" ^ + --add-data="src\%PACKAGE%\locale;.\%PACKAGE%\locale" ^ + --add-data="data\%PACKAGE%.ico;." ^ + --icon=data\\%PACKAGE%.ico ^ --noconfirm ^ --clean ^ - --onefile ^ + --onedir ^ + --windowed ^ src\\%PACKAGE%\\__main__.py goto end