From 0d08014bd5317d63dbdda91f2d87835c613d968a Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 7 May 2021 06:13:21 +0530 Subject: [PATCH] Dont append GPG signature twice to release file descs --- publish.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/publish.py b/publish.py index 2ff4077d8..10499e85a 100755 --- a/publish.py +++ b/publish.py @@ -355,7 +355,7 @@ def run_upload(args: Any) -> None: files[f'build/kitty-{version}.tar.xz.sig'] = 'Source code GPG signature' for path, desc in signatures.items(): sign_file(path) - files[path + '.sig'] = desc + ' GPG signature' + files[path + '.sig'] = desc for f in files: if not os.path.exists(f): raise SystemExit(f'The release artifact {f} does not exist')