From e99883de26ef8611e703c0eeca7a02a6dbfb7857 Mon Sep 17 00:00:00 2001 From: Nathan Johnson Date: Thu, 10 Sep 2020 10:48:32 -0500 Subject: [PATCH] Updating documentation on verifying releases --- docs/content/faq/verifying-releases.md | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/docs/content/faq/verifying-releases.md b/docs/content/faq/verifying-releases.md index e452af454..18cfea6e3 100644 --- a/docs/content/faq/verifying-releases.md +++ b/docs/content/faq/verifying-releases.md @@ -142,15 +142,14 @@ For example: gpg --import fabiolb.asc # Download the binary and signature files. -curl -OsL https://github.com/fabiolb/fabio/releases/download/v1.5.14/fabio-1.5.14-go1.7.1_linux-amd64 -curl -OsL https://github.com/fabiolb/fabio/releases/download/v1.5.14/fabio-1.5.14.sha256 -curl -OsL https://github.com/fabiolb/fabio/releases/download/v1.5.14/fabio-1.5.14.sha256.sig +curl -OsL https://github.com/fabiolb/fabio/releases/download/v1.5.14/fabio-1.5.14-go1.15-linux_amd64 +curl -OsL https://github.com/fabiolb/fabio/releases/download/v1.5.14/fabio-1.5.14-go1.15.sha256 +curl -OsL https://github.com/fabiolb/fabio/releases/download/v1.5.14/fabio-1.5.14-go1.15.sha256.sig # Verify the signature file is untampered. -gpg --verify fabio-1.5.14.sha256.sig fabio-1.5.14.sha256 - +gpg --verify fabio-1.5.14-go1.15.sha256.sig fabio-1.5.14-go1.15.sha256 # Verify the SHASUM matches the binary. -shasum -a 256 -c fabio-1.5.14.sha256 +grep linux_amd64 fabio-1.5.14-go1.15.sha256 | shasum -a 256 -c - ``` ## Note