From 337f1fad3f7c6693f8a6a831012e30c171620fdb Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 16 Nov 2022 13:45:27 +0530 Subject: [PATCH] fix double signatures --- publish.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/publish.py b/publish.py index 5b92fde47..f5e6ef9ba 100755 --- a/publish.py +++ b/publish.py @@ -397,6 +397,8 @@ def files_for_upload() -> Dict[str, str]: signatures[path] = f'GPG signature for {desc}' b = len(files) for path in glob.glob('build/static/kitty-tool-*'): + if path.endswith('.sig'): + continue path = os.path.abspath(path) exe_name = os.path.basename(path) files[path] = f'Static {exe_name} executable'