Skip to content

Commit

Permalink
fix instructions: make curl processing redirects (#32)
Browse files Browse the repository at this point in the history
By default, curl does not follow HTTP redirects, so if there are any, the key will not be added correctly. This change fixes it.
  • Loading branch information
nextiny authored Nov 18, 2023
1 parent ebde6ee commit 30a7eca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ <h1>Debian/Ubuntu Packages</h1>
<p>To allow the system to check the packages authenticity, you need to provide the release key.</p>
<pre># Add the release PGP keys:
<b>sudo mkdir -p /etc/apt/keyrings
sudo curl -o /etc/apt/keyrings/syncthing-archive-keyring.gpg https://syncthing.net/release-key.gpg</b></pre>
sudo curl -L -o /etc/apt/keyrings/syncthing-archive-keyring.gpg https://syncthing.net/release-key.gpg</b></pre>

<p>The <code>stable</code> channel is updated with stable release builds, usually every first
Tuesday of the month.</p>
Expand Down

1 comment on commit 30a7eca

@mes85
Copy link

@mes85 mes85 commented on 30a7eca Nov 18, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I just ran into this problem and wanted to report it. Therefore +1 from my side to fix the documentation asap.

Please sign in to comment.