PowerShell/Scripts/fetch-repos.ps1

35 lines
1.1 KiB
PowerShell
Raw Normal View History

2021-04-07 11:53:57 +02:00
#!/usr/bin/pwsh
2021-02-21 12:20:04 +01:00
<#
2021-04-07 15:17:49 +02:00
.SYNTAX fetch-repos.ps1 [<parent-dir>]
2021-03-22 20:10:18 +01:00
.DESCRIPTION fetches updates for all Git repositories under the current/given directory (including submodules)
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
2021-02-21 12:20:04 +01:00
#>
2021-02-28 18:49:53 +01:00
param($ParentDir = "$PWD")
2021-02-21 12:20:04 +01:00
try {
2021-04-14 17:50:35 +02:00
"Fetching updates for Git repositories under $($ParentDir)..."
2021-04-15 08:41:37 +02:00
$StopWatch = [system.diagnostics.stopwatch]::startNew()
2021-03-16 08:45:53 +01:00
if (-not(test-path "$ParentDir" -pathType container)) { throw "Can't access directory: $ParentDir" }
2021-02-28 18:49:53 +01:00
set-location $ParentDir
2021-03-16 08:45:53 +01:00
& git --version
if ($lastExitCode -ne "0") { throw "Can't execute 'git' - make sure Git is installed and available" }
[int]$Count = 0
2021-02-28 18:49:53 +01:00
get-childItem $ParentDir -attributes Directory | foreach-object {
2021-04-15 13:37:42 +02:00
& "$PSScriptRoot/fetch-repo.ps1" "$($_.FullName)"
if ($lastExitCode -ne "0") { throw "Script 'fetch-repo.ps1' failed" }
2021-02-28 18:26:20 +01:00
$Count++
2021-02-28 18:49:53 +01:00
}
2021-04-15 08:41:37 +02:00
write-host -foregroundColor green "OK - fetched updates for $Count Git repositories under $ParentDir in $($StopWatch.Elapsed.Seconds) second(s)"
2021-02-21 12:20:04 +01:00
exit 0
} catch {
write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}