fix double signatures

This commit is contained in:
Kovid Goyal 2022-11-16 13:45:27 +05:30
parent 463c9debe7
commit 337f1fad3f
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -397,6 +397,8 @@ def files_for_upload() -> Dict[str, str]:
signatures[path] = f'GPG signature for {desc}' signatures[path] = f'GPG signature for {desc}'
b = len(files) b = len(files)
for path in glob.glob('build/static/kitty-tool-*'): for path in glob.glob('build/static/kitty-tool-*'):
if path.endswith('.sig'):
continue
path = os.path.abspath(path) path = os.path.abspath(path)
exe_name = os.path.basename(path) exe_name = os.path.basename(path)
files[path] = f'Static {exe_name} executable' files[path] = f'Static {exe_name} executable'