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.
This commit is contained in:
2023-11-15 13:43:51 +01:00
parent eb48557c77
commit 6619a172c7

View File

@@ -61,9 +61,13 @@ goto end
%PYTHON% -m PyInstaller -n "%APP_NAME%" ^ %PYTHON% -m PyInstaller -n "%APP_NAME%" ^
--add-data="dist/bundled-libraries.md;%PACKAGE%\open-source-licenses" ^ --add-data="dist/bundled-libraries.md;%PACKAGE%\open-source-licenses" ^
--add-data="dist/open-source-licenses.*;%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 ^ --noconfirm ^
--clean ^ --clean ^
--onefile ^ --onedir ^
--windowed ^
src\\%PACKAGE%\\__main__.py src\\%PACKAGE%\\__main__.py
goto end goto end