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

This commit is contained in:
Raoul Snyman 2023-09-09 21:22:00 -07:00
parent a6e556e524
commit 03bdf87994
Signed by: raoul
GPG Key ID: F55BCED79626AE9C
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()