Update new-branch.ps1

This commit is contained in:
Markus Fleschutz 2022-12-21 13:00:50 +01:00
parent a99a0ce61a
commit 1e45baca71

View File

@ -50,7 +50,7 @@ try {
if ($lastExitCode -ne "0") { throw "'git submodule update' failed with exit code $lastExitCode" }
[int]$Elapsed = $StopWatch.Elapsed.TotalSeconds
"✔️ created new '$NewBranchName' branch in 📂$RepoDirName repository (based on '$CurrentBranchName') in $Elapsed sec."
"✔️ created new '$NewBranchName' branch based on '$CurrentBranchName' in 📂$RepoDirName repository in $Elapsed sec."
exit 0 # success
} catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"