2021-01-20 16:11:38 +01:00
|
|
|
#!/snap/bin/powershell
|
|
|
|
<#
|
|
|
|
.SYNTAX ./update-repos.ps1 [<directory>]
|
|
|
|
.DESCRIPTION updates all Git repositories under the current directory
|
|
|
|
.LINK https://github.com/fleschutz/PowerShell
|
|
|
|
.NOTES Author: Markus Fleschutz / License: CC0
|
|
|
|
#>
|
|
|
|
|
|
|
|
param([string]$Directory = "")
|
|
|
|
|
|
|
|
try {
|
|
|
|
if ($Directory -eq "") {
|
|
|
|
$Directory = "$PWD"
|
|
|
|
}
|
|
|
|
$Items = get-childItem -path $Directory
|
|
|
|
foreach ($Item in $Items) {
|
2021-01-20 16:38:46 +01:00
|
|
|
if ($Item.Mode -eq "d----") {
|
2021-01-20 16:11:38 +01:00
|
|
|
$Filename = $Item.Name
|
2021-01-20 16:38:46 +01:00
|
|
|
write-host ""
|
|
|
|
write-host -nonewline "Updating $Filename ..."
|
2021-01-20 16:11:38 +01:00
|
|
|
set-location $Filename
|
|
|
|
git pull
|
|
|
|
set-location ..
|
|
|
|
}
|
|
|
|
}
|
|
|
|
exit 0
|
|
|
|
} catch {
|
|
|
|
write-error "ERROR in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|
|
|
exit 1
|
|
|
|
}
|