location for linux installers has changed with recent bypy changes

This commit is contained in:
Kovid Goyal
2021-12-10 07:23:12 +05:30
parent 8e435dff16
commit 32c4f4ccaa

View File

@@ -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):