Skip to content

Commit

Permalink
fix: fetching key from multi keyserver
Browse files Browse the repository at this point in the history
  • Loading branch information
Cryolitia committed Oct 14, 2024
1 parent 539bcc7 commit 1b0ed90
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .well-known/make.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,6 @@
print(data)
for key, value in data.items():
for fingerprint in value:
os.system(f"gpg --recv-keys {fingerprint}")
os.system(f"gpg --recv-keys --keyserver keyserver.ubuntu.com {fingerprint}")
os.system(f"gpg --recv-keys --keyserver keys.openpgp.org {fingerprint}")
os.system(f"gpg --list-options show-only-fpr-mbox -k {fingerprint} | gpg-wks-client -v --install-key")

0 comments on commit 1b0ed90

Please sign in to comment.