Skip to content

Commit

Permalink
Fix Small Typo
Browse files Browse the repository at this point in the history
This blocked specifying a custom AppImage path.
  • Loading branch information
TheBrokenRail authored and azubieta committed Jun 10, 2022
1 parent 4327377 commit 7b1fe9b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions appimagebuilder/modules/prime/appimage_primer.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,14 +61,14 @@ def prime(self):
self._make_appimage_executable()

def _resolve_appimage_file_name(self):
if not self.context.recipe.AppImage.filename():
if not self.context.recipe.AppImage.file_name():
appimage_file_name = "%s-%s-%s.AppImage" % (
self.context.app_info.name,
self.context.app_info.version,
self.bundle_main_arch,
)
else:
appimage_file_name = self.context.recipe.AppImage.filename()
appimage_file_name = self.context.recipe.AppImage.file_name()

return appimage_file_name

Expand Down

0 comments on commit 7b1fe9b

Please # to comment.