Files
Archive/netch/Other/deps.ps1
2024-03-05 02:32:38 -08:00

21 lines
407 B
PowerShell

Push-Location (Split-Path $MyInvocation.MyCommand.Path -Parent)
.\clean.ps1
Get-ChildItem -Path '.' -Directory | ForEach-Object {
Push-Location (Split-Path $MyInvocation.MyCommand.Path -Parent)
$name=$_.Name
if ( Test-Path ".\$name\deps.ps1" ) {
& ".\$name\deps.ps1"
if ( -Not $? ) {
exit $lastExitCode
}
}
}
Pop-Location
exit 0