Replaced the done character

This commit is contained in:
Markus Fleschutz
2024-10-01 13:37:53 +02:00
parent c43e787025
commit fd963889d2
600 changed files with 743 additions and 769 deletions

View File

@ -1,4 +1,4 @@
<#
<#
.SYNOPSIS
Creates a new Git branch
.DESCRIPTION
@ -15,7 +15,7 @@
⏳ (4/6) Creating new branch...
⏳ (5/6) Pushing updates...
⏳ (6/6) Updating submodules...
✔️ Created branch 'test123' based on 'main' in 📂rust repo in 18s.
Created branch 'test123' based on 'main' in 📂rust repo in 18s.
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
@ -62,7 +62,7 @@ try {
if ($lastExitCode -ne "0") { throw "'git submodule update' failed with exit code $lastExitCode" }
[int]$elapsed = $stopWatch.Elapsed.TotalSeconds
"✔️ Created branch '$newBranch' based on '$currentBranch' in 📂$repoName repo in $($elapsed)s."
" Created branch '$newBranch' based on '$currentBranch' in 📂$repoName repo in $($elapsed)s."
exit 0 # success
} catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"