mirror of
https://github.com/bolucat/Archive.git
synced 2025-09-26 20:21:35 +08:00
21 lines
407 B
PowerShell
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
|