Files
OldThink/Tools/generate_hashes.ps1

6 lines
138 B
PowerShell
Raw Normal View History

2020-02-07 20:42:19 +01:00
#!/usr/bin/env pwsh
2020-02-07 20:47:23 +01:00
Get-ChildItem release/*.zip | Get-FileHash -Algorithm SHA256 | ForEach-Object {
2020-02-07 20:42:19 +01:00
$_.Hash > "$($_.Path).sha256";
}