diff --git a/loaih/__init__.py b/loaih/__init__.py index ba132fd..0c57bc9 100644 --- a/loaih/__init__.py +++ b/loaih/__init__.py @@ -79,8 +79,8 @@ class Build(object): def __gen_appimagefilename__(self, version, arch): """Generalize the construction of the name of the app.""" - self.appversion = self.appname + f'-{version}' + self.languagepart + self.helppart - return self.appversion + f'-{arch}.AppImage' + self.appversion = version + self.languagepart + self.helppart + return self.appname + f'-{self.appversion}-{arch}.AppImage' def __calculate_full_path__(self):