Add unicode character

This commit is contained in:
Markus Fleschutz
2021-04-17 11:23:41 +02:00
parent a67bff3cc8
commit 9e1c96d46f
8 changed files with 24 additions and 24 deletions

View File

@ -1,7 +1,7 @@
#!/usr/bin/pwsh
#!/usr/bin/pwsh
<#
.SYNTAX clean-repo.ps1 [<repo-dir>]
.DESCRIPTION cleans the current/given Git repository from untracked files (including submodules, e.g. for a fresh build)
.DESCRIPTION cleans a Git repository from untracked files (including submodules, e.g. for a fresh build)
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
@ -9,12 +9,12 @@
param($RepoDir = "$PWD")
try {
"Cleaning Git repository $RepoDir from untracked files ..."
"Cleaning Git repository $RepoDir from untracked files..."
if (-not(test-path "$RepoDir" -pathType container)) { throw "Can't access directory: $RepoDir" }
set-location "$RepoDir"
& git --version
$Null = (git --version)
if ($lastExitCode -ne "0") { throw "Can't execute 'git' - make sure Git is installed and available" }
& git clean -fdx # force + recurse into dirs + don't use the standard ignore rules
@ -23,7 +23,7 @@ try {
& git submodule foreach --recursive git clean -fdx
if ($lastExitCode -ne "0") { throw "'git clean -fdx' in submodules failed" }
write-host -foregroundColor green "OK - cleaned Git repository $RepoDir from untracked files"
write-host -foregroundColor green "✔️ Git repository $RepoDir is clean"
exit 0
} catch {
write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"