mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +00:00
Ports: Use keyserver.ubuntu.com as .sig keyserver (#2535)
Increases the number of successfully building ports from 27 to 36 (of 56) on my system.
This commit is contained in:
parent
a85506009f
commit
33d6d640d3
Notes:
sideshowbarker
2024-07-19 05:44:20 +09:00
Author: https://github.com/nico Commit: https://github.com/SerenityOS/serenity/commit/33d6d640d34 Pull-request: https://github.com/SerenityOS/serenity/pull/2535
1 changed files with 3 additions and 1 deletions
|
@ -52,7 +52,9 @@ func_defined post_fetch || post_fetch() {
|
|||
fetch() {
|
||||
if [ "$auth_type" == "sig" ] && [ ! -z "${auth_import_key}" ]; then
|
||||
# import gpg key if not existing locally
|
||||
gpg --list-keys $auth_import_key || gpg --recv-key $auth_import_key
|
||||
# The default keyserver keys.openpgp.org prints "new key but contains no user ID - skipped"
|
||||
# and fails. Use a different key server.
|
||||
gpg --list-keys $auth_import_key || gpg --keyserver hkps://keyserver.ubuntu.com --recv-key $auth_import_key
|
||||
fi
|
||||
|
||||
OLDIFS=$IFS
|
||||
|
|
Loading…
Reference in a new issue