signindex: do not remove index-v1.json after signing

With ~index-v2, the model is changing to offer the plain JSON file for easy
consumption.  Then gpgsign will also provide a detached PGP signature for
systems that would rather verify based on PGP signatures than JAR signatures.

!1080
closes #969
This commit is contained in:
Hans-Christoph Steiner 2022-05-17 12:57:44 +02:00
parent 8f6bc1114a
commit 73c31e6e63
No known key found for this signature in database
GPG key ID: 3E177817BA1B9BFA
2 changed files with 34 additions and 2 deletions

View file

@ -139,7 +139,6 @@ def main():
index_file = os.path.join(output_dir, json_name)
if os.path.exists(index_file):
sign_index_v1(output_dir, json_name)
os.remove(index_file)
logging.info('Signed ' + index_file)
signed.append(index_file)