Generate SHA256 hashes.

This commit is contained in:
Pieter-Jan Briers
2020-02-07 20:42:19 +01:00
parent 9ccb9aeb5c
commit d92f305402
2 changed files with 11 additions and 0 deletions

5
Tools/generate_hashes.ps1 Executable file
View File

@@ -0,0 +1,5 @@
#!/usr/bin/env pwsh
Get-ChildItem release/*.zip | Get-FileHash -Algorithm S | ForEach-Object {
$_.Hash > "$($_.Path).sha256";
}