Skip to content

Commit

Permalink
Properly appending '.zip'
Browse files Browse the repository at this point in the history
  • Loading branch information
kelson42 committed Dec 16, 2024
1 parent ef54fd8 commit b1b545a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/scripts/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = working_dir.with_suffix(".zip")
build_path = working_dir + ".zip"
app_name = build_path.name
command = [
"python",
Expand Down

0 comments on commit b1b545a

Please sign in to comment.