2024-10-01 15:11:03 +02:00
|
|
|
|
<#
|
2021-07-13 21:10:02 +02:00
|
|
|
|
.SYNOPSIS
|
2022-08-18 09:46:16 +02:00
|
|
|
|
Builds Git repositories
|
2021-07-13 21:10:02 +02:00
|
|
|
|
.DESCRIPTION
|
2022-08-18 09:46:16 +02:00
|
|
|
|
This PowerShell script builds all Git repositories in a folder.
|
2021-10-06 09:33:45 +02:00
|
|
|
|
.PARAMETER ParentDir
|
2022-08-18 09:46:16 +02:00
|
|
|
|
Specifies the path to the parent folder
|
2021-07-13 21:10:02 +02:00
|
|
|
|
.EXAMPLE
|
2023-08-06 21:35:36 +02:00
|
|
|
|
PS> ./build-repos.ps1 C:\MyRepos
|
2021-07-13 21:10:02 +02:00
|
|
|
|
.LINK
|
|
|
|
|
https://github.com/fleschutz/PowerShell
|
2022-01-29 12:47:46 +01:00
|
|
|
|
.NOTES
|
2022-08-18 09:46:16 +02:00
|
|
|
|
Author: Markus Fleschutz | License: CC0
|
2021-04-14 19:01:47 +02:00
|
|
|
|
#>
|
|
|
|
|
|
2021-07-15 15:51:22 +02:00
|
|
|
|
param([string]$ParentDir = "$PWD")
|
2021-04-14 19:01:47 +02:00
|
|
|
|
|
|
|
|
|
try {
|
2021-04-15 08:41:37 +02:00
|
|
|
|
$StopWatch = [system.diagnostics.stopwatch]::startNew()
|
2021-04-14 19:01:47 +02:00
|
|
|
|
|
2022-08-18 09:46:16 +02:00
|
|
|
|
$ParentDirName = (Get-Item "$ParentDir").Name
|
|
|
|
|
"⏳ Step 1 - Checking parent folder 📂$ParentDirName..."
|
|
|
|
|
if (-not(Test-Path "$ParentDir" -pathType container)) { throw "Can't access folder: $ParentDir" }
|
|
|
|
|
$Folders = (Get-ChildItem "$ParentDir" -attributes Directory)
|
2021-07-02 15:25:25 +02:00
|
|
|
|
$FolderCount = $Folders.Count
|
2022-08-18 09:46:16 +02:00
|
|
|
|
"Found $FolderCount subfolders."
|
2021-05-07 14:55:02 +02:00
|
|
|
|
|
2021-07-02 15:25:25 +02:00
|
|
|
|
[int]$Step = 1
|
2021-05-07 14:55:02 +02:00
|
|
|
|
foreach ($Folder in $Folders) {
|
2021-10-06 09:27:16 +02:00
|
|
|
|
& "$PSScriptRoot/build-repo.ps1" "$Folder"
|
2021-07-02 15:25:25 +02:00
|
|
|
|
$Step++
|
2021-04-14 19:01:47 +02:00
|
|
|
|
}
|
|
|
|
|
|
2021-04-21 16:43:08 +02:00
|
|
|
|
[int]$Elapsed = $StopWatch.Elapsed.TotalSeconds
|
2024-09-24 21:28:31 +02:00
|
|
|
|
"✅ Built $FolderCount Git repositories at 📂$ParentDirName in $Elapsed sec"
|
2021-09-27 10:09:45 +02:00
|
|
|
|
exit 0 # success
|
2021-04-14 19:01:47 +02:00
|
|
|
|
} catch {
|
2022-04-13 12:06:32 +02:00
|
|
|
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
2021-04-14 19:01:47 +02:00
|
|
|
|
exit 1
|
2023-08-06 21:35:36 +02:00
|
|
|
|
}
|