Update common.py

Properly .zip appending to filename
This commit is contained in:
Kelson 2024-12-18 06:00:33 +01:00 committed by GitHub
parent 0109c8ced3
commit 1aeec138cf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -544,7 +544,7 @@ def create_desktop_image(make_release):
elif platform.system() == "Windows":
archive_basename = "kiwix-desktop_windows_x64_{}".format(postfix)
working_dir = INSTALL_DIR / archive_basename
build_path = Path(str(working_dir) + ".zip")
build_path = working_dir.with_suffix(working_dir.suffix + ".zip")
app_name = build_path.name
command = [
"python",