From bf82ab77921fb9380ca111b23ebd34586fa68882 Mon Sep 17 00:00:00 2001 From: Marc G <91296549+Marc-Gee@users.noreply.github.com> Date: Mon, 20 Mar 2023 15:06:27 -0700 Subject: [PATCH] Modify checksum fail message The scripts [computed checksum failure] message is changed to match to the Linux SHASUM failure output. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6fda7dfd0..4f664a963 100644 --- a/README.md +++ b/README.md @@ -215,7 +215,7 @@ Get-Content seedsigner.0.6.0.sha256 | ForEach-Object { if ((Test-Path $filename) -eq $True) { # check if the computed hash matches the expected hash - write-host $filename (':WARNING:This computed hash/checksum did NOT match!', 'is OK.')[((Get-FileHash $filename).hash -eq $hash)] + write-host $filename ('FAILED: Computed checksum did NOT match!', 'is OK.')[((Get-FileHash $filename).hash -eq $hash)] } } ```