PowerShell/Scripts/build-repos.ps1

30 lines
917 B
PowerShell
Raw Normal View History

2021-04-16 20:01:38 +02:00
#!/usr/bin/pwsh
2021-04-14 19:01:47 +02:00
<#
.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 {
2021-04-17 11:23:41 +02:00
"⏳ Building Git repositories at $($ParentDir)..."
2021-04-15 08:41:37 +02:00
$StopWatch = [system.diagnostics.stopwatch]::startNew()
2021-04-14 19:01:47 +02:00
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 {
2021-04-14 19:23:34 +02:00
& "$PSScriptRoot/build-repo.ps1" "$($_.FullName)"
2021-04-14 19:01:47 +02:00
$Count++
}
2021-04-17 11:23:41 +02:00
write-host -foregroundColor green "✔️ $Count Git repositories built at $ParentDir in $($StopWatch.Elapsed.Seconds) second(s)"
2021-04-14 19:01:47 +02:00
exit 0
} catch {
write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}