Skip to content

Commit 7b1fe9b

Browse files
TheBrokenRailazubieta
authored andcommitted
Fix Small Typo
This blocked specifying a custom AppImage path.
1 parent 4327377 commit 7b1fe9b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

appimagebuilder/modules/prime/appimage_primer.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -61,14 +61,14 @@ def prime(self):
6161
self._make_appimage_executable()
6262

6363
def _resolve_appimage_file_name(self):
64-
if not self.context.recipe.AppImage.filename():
64+
if not self.context.recipe.AppImage.file_name():
6565
appimage_file_name = "%s-%s-%s.AppImage" % (
6666
self.context.app_info.name,
6767
self.context.app_info.version,
6868
self.bundle_main_arch,
6969
)
7070
else:
71-
appimage_file_name = self.context.recipe.AppImage.filename()
71+
appimage_file_name = self.context.recipe.AppImage.file_name()
7272

7373
return appimage_file_name
7474

0 commit comments

Comments
 (0)