From c18958c81261bb9b30d1bb30770b4f64a43f2422 Mon Sep 17 00:00:00 2001 From: Iceman Date: Thu, 29 Aug 2024 11:24:22 +0900 Subject: [PATCH 1/2] Update swiftly-install.sh --- install/swiftly-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/swiftly-install.sh b/install/swiftly-install.sh index 780475cc..420a2a7b 100755 --- a/install/swiftly-install.sh +++ b/install/swiftly-install.sh @@ -684,7 +684,7 @@ if [ "$IS_MACOS" == "false" ]; then if has_command gpg ; then echo "" echo "Importing Swift's PGP keys..." - curl --silent --retry 3 --location --fail https://swift.org/keys/all-keys.asc | gpg --import - + curl --compressed --silent --retry 3 --location --fail https://swift.org/keys/all-keys.asc | gpg --import - else echo "gpg not installed, skipping import of Swift's PGP keys." fi From 9965056afe7b4c03c01757fc1b7473e5d63926ab Mon Sep 17 00:00:00 2001 From: Iceman Date: Thu, 29 Aug 2024 11:32:23 +0900 Subject: [PATCH 2/2] Use canonical address --- install/swiftly-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/swiftly-install.sh b/install/swiftly-install.sh index 420a2a7b..f934753c 100755 --- a/install/swiftly-install.sh +++ b/install/swiftly-install.sh @@ -684,7 +684,7 @@ if [ "$IS_MACOS" == "false" ]; then if has_command gpg ; then echo "" echo "Importing Swift's PGP keys..." - curl --compressed --silent --retry 3 --location --fail https://swift.org/keys/all-keys.asc | gpg --import - + curl --compressed --silent --retry 3 --location --fail https://www.swift.org/keys/all-keys.asc | gpg --import - else echo "gpg not installed, skipping import of Swift's PGP keys." fi