Good job me.

This commit is contained in:
Pieter-Jan Briers
2020-02-07 20:47:23 +01:00
parent d92f305402
commit 425a277b11

View File

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