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 directory
.DESCRIPTION
@ -7,7 +7,7 @@
Specifies the path and filename of the new directory
.EXAMPLE
PS> ./new-dir.ps1 MyCollection
✔️ New 📂C:\Temp\MyCollection created.
New 📂C:\Temp\MyCollection created.
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
@ -24,7 +24,7 @@ try {
$null = (New-Item -itemType directory -path $path)
$path = Resolve-Path $path
"✔️ New 📂$path created."
" New 📂$path created."
exit 0 # success
} catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"