2021-04-21 19:53:52 +02:00
|
|
|
|
<#
|
2021-05-17 19:53:40 +02:00
|
|
|
|
.SYNTAX make-repos.ps1 [<parent-dir>]
|
2021-04-14 19:01:47 +02:00
|
|
|
|
.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-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" }
|
|
|
|
|
|
2021-05-07 14:55:02 +02:00
|
|
|
|
$Folders = (get-childItem "$ParentDir" -attributes Directory)
|
|
|
|
|
$ParentDirName = (get-item "$ParentDir").Name
|
|
|
|
|
"Building $($Folders.Count) Git repositories at 📂$ParentDirName..."
|
|
|
|
|
|
|
|
|
|
foreach ($Folder in $Folders) {
|
2021-05-17 19:53:40 +02:00
|
|
|
|
& "$PSScriptRoot/make-repo.ps1" "$Folder"
|
2021-04-14 19:01:47 +02:00
|
|
|
|
}
|
|
|
|
|
|
2021-04-21 16:43:08 +02:00
|
|
|
|
[int]$Elapsed = $StopWatch.Elapsed.TotalSeconds
|
2021-06-07 20:06:55 +02:00
|
|
|
|
"✔️ built $($Folders.Count) Git repositories at 📂$ParentDirName in $Elapsed sec"
|
2021-04-14 19:01:47 +02:00
|
|
|
|
exit 0
|
|
|
|
|
} catch {
|
2021-05-02 21:30:48 +02:00
|
|
|
|
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
2021-04-14 19:01:47 +02:00
|
|
|
|
exit 1
|
|
|
|
|
}
|