From 6fdea381c3fa2ebdf0eac660476fb5f85a790e43 Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Wed, 10 Mar 2021 15:15:50 +0100 Subject: [PATCH 1/2] Update fetch-repo.ps1 --- Scripts/fetch-repo.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Scripts/fetch-repo.ps1 b/Scripts/fetch-repo.ps1 index d301e493..55dab67e 100755 --- a/Scripts/fetch-repo.ps1 +++ b/Scripts/fetch-repo.ps1 @@ -17,8 +17,8 @@ try { & git --version if ($lastExitCode -ne "0") { throw "Can't execute 'git' - make sure Git is installed and available" } - & git fetch --recurse-submodules - if ($lastExitCode -ne "0") { throw "'git fetch --recurse-submodules' failed" } + & 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" } From 26087b76aefe3c069618b150a8eed92c63aaf7a9 Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Wed, 10 Mar 2021 15:16:28 +0100 Subject: [PATCH 2/2] Update fetch-repos.ps1 --- Scripts/fetch-repos.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Scripts/fetch-repos.ps1 b/Scripts/fetch-repos.ps1 index 18fb1f06..122906cc 100755 --- a/Scripts/fetch-repos.ps1 +++ b/Scripts/fetch-repos.ps1 @@ -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 ..