Add unicode characters

This commit is contained in:
Markus Fleschutz
2021-04-16 19:30:13 +02:00
parent 357ae2cea9
commit ef5367ed53
2 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
#!/usr/bin/pwsh
#!/usr/bin/pwsh
<#
.SYNTAX fetch-repo.ps1 [<repo-dir>]
.DESCRIPTION fetches updates for the current/given Git repository (including submodules)
@ -9,7 +9,7 @@
param($RepoDir = "$PWD")
try {
"Fetching updates for Git repository $($RepoDir)..."
"📥 Fetching updates for Git repository $($RepoDir)..."
if (-not(test-path "$RepoDir" -pathType container)) { throw "Can't access directory: $RepoDir" }
set-location "$RepoDir"