From 32c4f4ccaaaa9465a796f535f4f59706d28c9999 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 10 Dec 2021 07:23:12 +0530 Subject: [PATCH] location for linux installers has changed with recent bypy changes --- publish.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/publish.py b/publish.py index 0066b3cae..d9ac23eee 100755 --- a/publish.py +++ b/publish.py @@ -371,8 +371,8 @@ def files_for_upload() -> Dict[str, str]: signatures = {} for f, desc in { 'macos/dist/kitty-{}.dmg': 'macOS dmg', - 'linux/64/sw/dist/kitty-{}-x86_64.txz': 'Linux amd64 binary bundle', - 'linux/32/sw/dist/kitty-{}-i686.txz': 'Linux x86 binary bundle', + 'linux/64/dist/kitty-{}-x86_64.txz': 'Linux amd64 binary bundle', + 'linux/32/dist/kitty-{}-i686.txz': 'Linux x86 binary bundle', }.items(): path = os.path.join('bypy', 'b', f.format(version)) if not os.path.exists(path):