From f507273d2de2fca690f52c0c0735df80a4c7065e Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Thu, 31 Aug 2023 09:51:20 +0200 Subject: [PATCH] Update new-branch.ps1 --- Scripts/new-branch.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Scripts/new-branch.ps1 b/Scripts/new-branch.ps1 index 1928b797..a706dd83 100755 --- a/Scripts/new-branch.ps1 +++ b/Scripts/new-branch.ps1 @@ -50,7 +50,7 @@ try { if ($lastExitCode -ne "0") { throw "'git submodule update' failed with exit code $lastExitCode" } [int]$elapsed = $stopWatch.Elapsed.TotalSeconds - "✔️ Creating branch '$newBranch' in repo 📂$repoPathName (based on '$currentBranch') took $elapsed sec" + "✔️ Created new branch '$newBranch' in repo 📂$repoPathName (based on '$currentBranch', it took $elapsed sec)" exit 0 # success } catch { "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"