PowerShell/Scripts/update-repos.ps1
2021-02-21 12:24:22 +01:00

39 lines
865 B
PowerShell
Executable File

#!/bin/powershell
<#
.SYNTAX ./update-repos.ps1 [<directory>]
.DESCRIPTION updates all Git repositories under the current/given directory (including submodules)
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
param($Directory = "")
if ($Directory -eq "") {
$Directory = "$PWD"
}
try {
& git --version
} catch {
write-error "ERROR: can't execute 'git' - make sure Git is installed and available"
exit 1
}
try {
$Files = get-childItem -path $Directory
foreach ($File in $Files) {
if ($File.Mode -like "d*") {
$Filename = $File.Name
write-host ""
write-host -nonewline "Updating $Filename ..."
set-location $Filename
& git pull --recurse-submodules
set-location ..
}
}
exit 0
} catch {
write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}