Skip to content

Commit

Permalink
Fix: app image path not found
Browse files Browse the repository at this point in the history
  • Loading branch information
itsm3abena committed Dec 13, 2024
1 parent d1911a6 commit f9ac209
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build_deb.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@

try:
subprocess.run(["python3", "setup.py", "bdist_appimage"], check=True)
dist_appimage_files = glob(f"dist/{app_name}-{app_version}*.AppImage")
dist_appimage_files = glob(f"dist/*.AppImage")
if dist_appimage_files:
appimage_output_path = dist_appimage_files[0]
else:
Expand Down

0 comments on commit f9ac209

Please sign in to comment.