From 1c151b4b27358ed41d628f7f7a8ae1ddf2c704da Mon Sep 17 00:00:00 2001 From: Ian Hunter Date: Mon, 21 Jun 2021 10:44:27 -0400 Subject: [PATCH] Simplify sha256sum checking example The previous code didn't consider other languages and hid the output of failures. For example ``` $ LANG=es_ES.UTF-8 sha256sum -c sha256sum.txt oauth2-proxy-v7.1.3.linux-amd64/oauth2-proxy: La suma coincide ``` --- docs/docs/installation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/installation.md b/docs/docs/installation.md index c53b5fdf..b43ce6c7 100644 --- a/docs/docs/installation.md +++ b/docs/docs/installation.md @@ -17,7 +17,7 @@ slug: / Prebuilt binaries can be validated by extracting the file and verifying it against the `sha256sum.txt` checksum file provided for each release starting with version `v3.0.0`. ``` -$ sha256sum -c sha256sum.txt 2>&1 | grep OK +$ sha256sum -c sha256sum.txt oauth2-proxy-x.y.z.linux-amd64: OK ```