From b4ef446aee0bdf1bc17933b1fae1cd8e560ec46c Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Fri, 16 Dec 2022 11:27:24 +0100 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 cb3ccb94..f56eef7b 100755 --- a/Scripts/switch-branch.ps1 +++ b/Scripts/switch-branch.ps1 @@ -53,7 +53,7 @@ try { if ($lastExitCode -ne "0") { throw "'git submodule update' failed with exit code $lastExitCode" } [int]$Elapsed = $StopWatch.Elapsed.TotalSeconds - "✔️ switched 📂$RepoDirName repository to $BranchName branch in $Elapsed sec." + "✔️ switched to $BranchName branch in 📂$RepoDirName repository in $Elapsed sec." exit 0 # success } catch { "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"