Skip to content

Commit

Permalink
fix unicode
Browse files Browse the repository at this point in the history
  • Loading branch information
jpawlowski committed Aug 28, 2024
1 parent c286cd5 commit 4e0c6e8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/powershell-extended/Install-NerdFont.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -1033,7 +1033,7 @@ process {
Write-Verbose "Overwriting font file: $($fontFile.Name)"
}
Write-Verbose "Font file already exists: $($fontFile.Name)"
Write-Host -NoNewline ' `u{2713} ' -ForegroundColor Green
Write-Host -NoNewline " `u{2713} " -ForegroundColor Green
}
else {
if ($Force) {
Expand Down Expand Up @@ -1087,7 +1087,7 @@ process {
Write-Host $fontFile.Name
}
catch {
Write-Host -NoNewline ' `u{2717} ' -ForegroundColor Red
Write-Host -NoNewline " `u{2717} " -ForegroundColor Red
Write-Host $fontFile.Name
throw $_
}
Expand Down

0 comments on commit 4e0c6e8

Please sign in to comment.