Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 9c6810e

Browse files
committed
Replaced literal unicode box character with casted char representation to fix git mangling it.
1 parent d72ef5c commit 9c6810e

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

PowerShell/Dev/winfetch.ps1

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,9 @@ function printColoredSquares {
2424

2525
# Build dashes.
2626
$strBuild = ""
27+
$unicodeBox = [char]0x25AE
2728
for ($i = 0; $i -lt $pcInfo.CsUserName.length; $i++) {
28-
$strBuild += "-"
29+
$strBuild += $unicodeBox
2930
}
3031

3132
# Get ComputerInfo object.

0 commit comments

Comments
 (0)