From f9d976de4112715cfd3b17c048aede8cd0583b1f Mon Sep 17 00:00:00 2001 From: extremepayne <46696318+extremepayne@users.noreply.github.com> Date: Fri, 13 Dec 2019 10:38:08 -0700 Subject: [PATCH] Windows command sha512 -> SHA512 (#956) * Windows command sha512 -> SHA512 The command fails (on my computer) unless the hash algorithm is passed as uppercase. As per: https://answers.microsoft.com/en-us/windows/forum/all/certutil-hashfile-sha1-failed/1a9f31fa-bdf5-4c63-8e72-91608606ba14 * trigger CI --- source/guides/maintenance/download-verify-decompress.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/guides/maintenance/download-verify-decompress.rst b/source/guides/maintenance/download-verify-decompress.rst index 1dc74083..9142bc34 100644 --- a/source/guides/maintenance/download-verify-decompress.rst +++ b/source/guides/maintenance/download-verify-decompress.rst @@ -142,7 +142,7 @@ checksum file designated with the suffix `-SHA512SUMS`. .. code-block:: bash - CertUtil -hashfile ./clear-[version number]-[image type].[compression type] sha512 + CertUtil -hashfile ./clear-[version number]-[image type].[compression type] SHA512 #. Manually compare the output with the original checksum value shown in the downloaded checksum file and make sure they match. @@ -173,4 +173,4 @@ Image types .. include:: ../../reference/image-types.rst :start-after: incl-image-filename-end: -.. _image: https://clearlinux.org/downloads \ No newline at end of file +.. _image: https://clearlinux.org/downloads