Merge branch 'fix-appveyor-more' into 'master'

Fix the build number for the PortableApps installer, which was also causing a hang somewhere

See merge request openlp/packaging!23
This commit is contained in:
Tim Bentley 2023-09-13 20:42:20 +00:00
commit cdd1851f2d
1 changed files with 1 additions and 1 deletions

View File

@ -335,7 +335,7 @@ class WindowsBuilder(Builder):
version = version + '.0' * (2 - version.count('.'))
self.portable_version = version + '.' + revision.split('+')[0]
else:
self.portable_version = self.version + '.0' * (3 - self.version.count('.'))
self.portable_version = self._pep440_to_windows_version(self.version)
with open(os.path.join(config_dir, 'appinfo.ini.default'), 'r') as input_file, \
open(os.path.join(self.portable_dest_path, 'App', 'Appinfo', 'appinfo.ini'), 'w') as output_file:
content = input_file.read()