From 30a7eca535b88a17681621ab6566bc5d4f7ff9b8 Mon Sep 17 00:00:00 2001 From: nextiny <10708171+nextiny@users.noreply.github.com> Date: Sat, 18 Nov 2023 12:06:30 +0200 Subject: [PATCH] fix instructions: make curl processing redirects (#32) By default, curl does not follow HTTP redirects, so if there are any, the key will not be added correctly. This change fixes it. --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 86507b7..7d6ba7b 100644 --- a/index.html +++ b/index.html @@ -41,7 +41,7 @@
To allow the system to check the packages authenticity, you need to provide the release key.
# Add the release PGP keys: sudo mkdir -p /etc/apt/keyrings -sudo curl -o /etc/apt/keyrings/syncthing-archive-keyring.gpg https://syncthing.net/release-key.gpg+sudo curl -L -o /etc/apt/keyrings/syncthing-archive-keyring.gpg https://syncthing.net/release-key.gpg
The stable
channel is updated with stable release builds, usually every first
Tuesday of the month.