Update fetch-repos.ps1

This commit is contained in:
Markus Fleschutz 2021-03-10 15:16:28 +01:00 committed by GitHub
parent 6fdea381c3
commit 26087b76ae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -21,7 +21,7 @@ try {
get-childItem $ParentDir -attributes Directory | foreach-object {
set-location $_.FullName
& git fetch --recurse-submodules
& git fetch --all --recurse-submodules
if ($lastExitCode -ne "0") { throw "'git fetch --recurse-submodules' failed" }
set-location ..