Update pull-repos.ps1

This commit is contained in:
Markus Fleschutz 2022-04-14 07:39:34 +02:00
parent 04738077fe
commit 3cc97862af

View File

@ -1,16 +1,16 @@
<# <#
.SYNOPSIS .SYNOPSIS
Pulls updates for all Git repositories in a folder Pulls updates for all repos in a folder
.DESCRIPTION .DESCRIPTION
This PowerShell script pulls updates for all Git repositories in a folder (including submodules). This PowerShell script pulls updates for all Git repositories in a folder (including submodules).
.PARAMETER ParentDir .PARAMETER ParentDir
Specifies the path to the parent folder Specifies the path to the parent folder
.EXAMPLE .EXAMPLE
PS> ./pull-repos C:\MyRepos PS> ./pull-repos C:\MyRepos
.NOTES
Author: Markus Fleschutz / License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz | License: CC0
#> #>
param([string]$ParentDir = "$PWD") param([string]$ParentDir = "$PWD")
@ -44,7 +44,7 @@ try {
} }
[int]$Elapsed = $StopWatch.Elapsed.TotalSeconds [int]$Elapsed = $StopWatch.Elapsed.TotalSeconds
"✔️ pulled $NumFolders Git repos in 📂$ParentDirName in $Elapsed sec ($Failed failed)" "✔️ pulled $NumFolders repos in 📂$ParentDirName in $Elapsed sec ($Failed failed)"
exit 0 # success exit 0 # success
} catch { } catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])" "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"