From 780d5400cbdb043cf9cf53edbe647063a10d1105 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 15 Nov 2022 12:01:55 +0530 Subject: [PATCH] Use full kitty-tool exe name in github description --- publish.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/publish.py b/publish.py index 6f546c1eb..5b92fde47 100755 --- a/publish.py +++ b/publish.py @@ -398,8 +398,9 @@ def files_for_upload() -> Dict[str, str]: b = len(files) for path in glob.glob('build/static/kitty-tool-*'): path = os.path.abspath(path) - files[path] = 'Static kitty-tool executable' - signatures[path] = 'GPG signature for static kitty-tool executable' + exe_name = os.path.basename(path) + files[path] = f'Static {exe_name} executable' + signatures[path] = f'GPG signature for static {exe_name} executable' if len(files) == b: raise SystemExit('No static binaries found')