summaryrefslogtreecommitdiff
path: root/scripts/check-sha256.ps1
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/check-sha256.ps1')
-rw-r--r--scripts/check-sha256.ps11
1 files changed, 0 insertions, 1 deletions
diff --git a/scripts/check-sha256.ps1 b/scripts/check-sha256.ps1
index 57c9797c6a..e551605ad0 100644
--- a/scripts/check-sha256.ps1
+++ b/scripts/check-sha256.ps1
@@ -1,7 +1,6 @@
param([string]$file, [string]$hash);
$hashFromFile = Get-FileHash -Path $file -Algorithm SHA256
-$hashFromFile | Format-List
if ($hashFromFile.Hash -ne $hash) {
Throw 'Hash mismatch!'