Improve the descriptions

This commit is contained in:
Markus Fleschutz
2021-09-11 10:21:44 +02:00
parent c068f5e7da
commit 638169cd31
19 changed files with 52 additions and 52 deletions

View File

@ -2,7 +2,7 @@
.SYNOPSIS
cd-home.ps1
.DESCRIPTION
Go to the user's home folder.
Change the working directory to the user's home directory
.EXAMPLE
PS> .\cd-home.ps1
.LINK
@ -13,7 +13,7 @@
$TargetDir = resolve-path "$HOME"
if (-not(test-path "$TargetDir" -pathType container)) {
write-warning "Sorry, there is no folder 📂$TargetDir (yet)"
write-error "Home directory 📂$TargetDir does not exist"
exit 1
}
set-location "$TargetDir"