From 1d0754ff5734e165a530944b61ec28744bcad461 Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Fri, 28 Oct 2022 09:25:16 +0200 Subject: [PATCH] Update switch-branch.ps1 --- Scripts/switch-branch.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Scripts/switch-branch.ps1 b/Scripts/switch-branch.ps1 index a8b837a4..02abbc8f 100755 --- a/Scripts/switch-branch.ps1 +++ b/Scripts/switch-branch.ps1 @@ -48,7 +48,7 @@ try { & git -C "$RepoDir" pull --recurse-submodules if ($lastExitCode -ne "0") { throw "'git pull' failed with exit code $lastExitCode" } - "⏳ (6/6) - Updating submodules..." + "⏳ (6/6) Updating submodules..." & git -C "$RepoDir" submodule update --init --recursive if ($lastExitCode -ne "0") { throw "'git submodule update' failed with exit code $lastExitCode" }