mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-06-25 02:17:03 +00:00
Dont append GPG signature twice to release file descs
This commit is contained in:
parent
dd0130180b
commit
0d08014bd5
1 changed files with 1 additions and 1 deletions
|
|
@ -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')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue