Skip to content

Commit 58b9526

Browse files
committed
Test for hidden or system files ; added styles for those
1 parent d5f242b commit 58b9526

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Get-ChildItemColor.psm1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ function Get-FileColor($item) {
2424
} elseif ($item.Attributes -band [System.IO.FileAttributes]::Hidden) {
2525
$key = 'Hidden'
2626
} elseif ($item.Attributes -band [System.IO.FileAttributes]::System) {
27-
$key = 'System'
27+
$key = 'Systemgit '
2828
} elseif ($item.PSobject.Properties.Name -contains "Extension") {
2929
If ($GetChildItemColorTable.File.ContainsKey($item.Extension)) {
3030
$key = $item.Extension

0 commit comments

Comments
 (0)