[RESOLVED] Package for Bruno
Published: August 7, 2025 - 08:17
Hello everyone,
We currently have an issue with the package for "bruno". The setup.py file expects the downloaded zip file to contain the program in the "win-unpacked" directory, but this is no longer the case in recent versions (>2), it seems. The zip file directly contains the data: The consequence is that currently the shortcut is made by pointing to an executable that would be in this non-existent win-unpacked directory.
The correction that should be applied is as follows:
replace :
by :
Would it be possible to review and, if confirmed, implement this fix?
Thanks in advance!
We currently have an issue with the package for "bruno". The setup.py file expects the downloaded zip file to contain the program in the "win-unpacked" directory, but this is no longer the case in recent versions (>2), it seems. The zip file directly contains the data: The consequence is that currently the shortcut is made by pointing to an executable that would be in this non-existent win-unpacked directory.
The correction that should be applied is as follows:
replace :
Code: Select all
exe_path = makepath(app_dir, "win-unpacked", f"{app_name}.exe")
Code: Select all
exe_path = makepath(app_dir, f"{app_name}.exe")Thanks in advance!