From 6fdea381c3fa2ebdf0eac660476fb5f85a790e43 Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Wed, 10 Mar 2021 15:15:50 +0100 Subject: [PATCH] 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" }