mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-23 16:33:20 +01:00
30 lines
914 B
PowerShell
Executable File
30 lines
914 B
PowerShell
Executable File
#!/usr/bin/pwsh
|
|
<#
|
|
.SYNTAX build-repos.ps1 [<parent-dir>]
|
|
.DESCRIPTION builds all Git repositories under the current/given directory
|
|
.LINK https://github.com/fleschutz/PowerShell
|
|
.NOTES Author: Markus Fleschutz / License: CC0
|
|
#>
|
|
|
|
param($ParentDir = "$PWD")
|
|
|
|
try {
|
|
"Building Git repositories under $($ParentDir)..."
|
|
$StopWatch = [system.diagnostics.stopwatch]::startNew()
|
|
|
|
if (-not(test-path "$ParentDir" -pathType container)) { throw "Can't access directory: $ParentDir" }
|
|
set-location $ParentDir
|
|
|
|
[int]$Count = 0
|
|
get-childItem $ParentDir -attributes Directory | foreach-object {
|
|
& "$PSScriptRoot/build-repo.ps1" "$($_.FullName)"
|
|
$Count++
|
|
}
|
|
|
|
write-host -foregroundColor green "OK - built $Count Git repositories under $ParentDir in $($StopWatch.Elapsed.Seconds) second(s)"
|
|
exit 0
|
|
} catch {
|
|
write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|
exit 1
|
|
}
|