Improve both scripts

This commit is contained in:
Markus Fleschutz 2021-04-15 13:37:42 +02:00
parent df7cbfab55
commit 55f9c2e19f
2 changed files with 9 additions and 12 deletions

View File

@ -9,7 +9,7 @@
param($RepoDir = "$PWD")
try {
write-output "Fetching updates for Git repository $RepoDir ..."
"Fetching updates for Git repository $RepoDir ..."
if (-not(test-path "$RepoDir" -pathType container)) { throw "Can't access directory: $RepoDir" }
set-location "$RepoDir"
@ -17,11 +17,12 @@ try {
& git --version
if ($lastExitCode -ne "0") { throw "Can't execute 'git' - make sure Git is installed and available" }
& git fetch --all --recurse-submodules
if ($lastExitCode -ne "0") { throw "'git fetch --all --recurse-submodules' failed" }
& git status
if ($lastExitCode -ne "0") { throw "'git status' failed" }
& git fetch --all --recurse-submodules --jobs=4
if ($lastExitCode -ne "0") { # retry once:
start-sleep -milliseconds 1000
& git fetch --all --recurse-submodules --jobs=1
if ($lastExitCode -ne "0") { throw "'git fetch' failed" }
}
write-host -foregroundColor green "OK - fetched updates for Git repository $RepoDir"
exit 0

View File

@ -20,13 +20,9 @@ try {
[int]$Count = 0
get-childItem $ParentDir -attributes Directory | foreach-object {
"Fetching updates for $($_.FullName)..."
set-location $_.FullName
& "$PSScriptRoot/fetch-repo.ps1" "$($_.FullName)"
if ($lastExitCode -ne "0") { throw "Script 'fetch-repo.ps1' failed" }
& git fetch --all --recurse-submodules
if ($lastExitCode -ne "0") { throw "'git fetch --all --recurse-submodules' failed" }
set-location ..
$Count++
}