1
0
Fork 0

Ancora microfix a versione.

This commit is contained in:
Emiliano Vavassori 2022-04-08 02:01:39 +02:00
parent 8ded57a154
commit be02b5076c
1 changed files with 2 additions and 2 deletions

View File

@ -79,8 +79,8 @@ class Build(object):
def __gen_appimagefilename__(self, version, arch): def __gen_appimagefilename__(self, version, arch):
"""Generalize the construction of the name of the app.""" """Generalize the construction of the name of the app."""
self.appversion = self.appname + f'-{version}' + self.languagepart + self.helppart self.appversion = version + self.languagepart + self.helppart
return self.appversion + f'-{arch}.AppImage' return self.appname + f'-{self.appversion}-{arch}.AppImage'
def __calculate_full_path__(self): def __calculate_full_path__(self):