thmahe / poetry-pyinstaller-plugin

Poetry plugin to build and/or bundle binaries with PyInstaller
https://pypi.org/project/poetry-pyinstaller-plugin/
MIT License
12 stars 6 forks source link

Icon path does not work #8

Closed akinnear closed 1 week ago

akinnear commented 1 month ago

If you define icon it looks in the .specs folder for the file.

Just like source is defined:

self.source = Path(source).resolve()

the icon should probably be as well. Instead of:

self.icon = icon

It probably should be:

self.icon = Path(icon).resolve()
thmahe commented 1 week ago

Fixed in v1.1.11

Thanks for reporting this issue.