Change to use fetch-repo.ps1

This commit is contained in:
Markus Fleschutz
2021-04-15 16:40:10 +02:00
parent e9c4c6415f
commit 24fffac7b8
7 changed files with 12 additions and 21 deletions

View File

@ -9,16 +9,14 @@
param($RepoDir = "$PWD", $Pattern = "*")
try {
write-output "Fetching updates for Git repository $RepoDir ..."
if (-not(test-path "$RepoDir" -pathType container)) { throw "Can't access directory: $RepoDir" }
set-location "$RepoDir"
& git --version
if ($lastExitCode -ne "0") { throw "Can't execute 'git' - make sure Git is installed and available" }
& git fetch --all --recurse-submodules --jobs=4
if ($lastExitCode -ne "0") { throw "'git fetch' failed" }
& "$PSScriptRoot/fetch-repo.ps1"
if ($lastExitCode -ne "0") { throw "Script 'fetch-repo.ps1' failed" }
write-output ""
write-output "List of Git Branches"