From e2188fa1606b901051beaddbce5c356e92e9e9e4 Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Mon, 26 Apr 2021 14:38:39 +0200 Subject: [PATCH] Improve output of create-branch.ps1 --- Scripts/create-branch.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Scripts/create-branch.ps1 b/Scripts/create-branch.ps1 index f14be3ce..c12da4e9 100755 --- a/Scripts/create-branch.ps1 +++ b/Scripts/create-branch.ps1 @@ -31,7 +31,7 @@ try { & git submodule update --init --recursive if ($lastExitCode -ne "0") { throw "'git submodule update' failed" } - "✔️ created new branch 🌵$NewBranchName" + "✔️ created new branch 🌵$NewBranchName in Git repository $RepoDir" exit 0 } catch { write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"