Files
netch/Other/build.ps1
2021-09-26 21:29:39 +08:00

42 lines
933 B
PowerShell

Push-Location (Split-Path $MyInvocation.MyCommand.Path -Parent)
.\clean.ps1
Get-ChildItem -Path '.' -Directory | ForEach-Object {
Set-Location (Split-Path $MyInvocation.MyCommand.Path -Parent)
$name=$_.Name
if ( Test-Path ".\$name\build.ps1" ) {
Write-Host "Building $name"
& ".\$name\build.ps1"
if ( -Not $? ) {
Write-Host "Build $name failed"
exit $lastExitCode
}
}
}
Get-ChildItem -Path '.' -Directory | ForEach-Object {
Set-Location (Split-Path $MyInvocation.MyCommand.Path -Parent)
$name=$_.Name
if ( Test-Path ".\$name\src" ) {
rm -Recurse -Force ".\$name\src"
}
}
Write-Host
Get-ChildItem -Path '.\release' -File | ForEach-Object {
$name=$_.Name
$hash=(Get-FileHash ".\release\$name" -Algorithm SHA256).Hash.ToLower()
Write-Host "$hash $name"
}
Pop-Location
exit 0