mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-16 21:17:39 +03:00
6 lines
138 B
PowerShell
Executable File
6 lines
138 B
PowerShell
Executable File
#!/usr/bin/env pwsh
|
|
|
|
Get-ChildItem release/*.zip | Get-FileHash -Algorithm SHA256 | ForEach-Object {
|
|
$_.Hash > "$($_.Path).sha256";
|
|
}
|