mirror of
https://github.com/netchx/netch.git
synced 2026-03-26 18:49:46 +08:00
18 lines
279 B
PowerShell
18 lines
279 B
PowerShell
$exec=(Split-Path $MyInvocation.MyCommand.Path -Parent)
|
|
|
|
Push-Location $exec
|
|
|
|
.\clean.ps1
|
|
|
|
Get-ChildItem -Path . -Directory | ForEach-Object {
|
|
$name=$_.Name
|
|
& ".\$name\deps.ps1"
|
|
|
|
if (-Not $?) {
|
|
exit $lastExitCode
|
|
}
|
|
}
|
|
|
|
Pop-Location
|
|
exit 0
|