From 6f716312fcdfe915e27eb6f54bb783db603b9a71 Mon Sep 17 00:00:00 2001 From: fukusuket <41001169+fukusuket@users.noreply.github.com> Date: Fri, 21 Mar 2025 00:46:38 +0900 Subject: [PATCH] chg: Output horizontally --- WELA.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WELA.ps1 b/WELA.ps1 index fba8e22f..7169ea84 100644 --- a/WELA.ps1 +++ b/WELA.ps1 @@ -98,7 +98,7 @@ function ShowRulesCountsByLevel { $i = 0 $usableRate | Sort-Object { $levelColorMap.Keys.IndexOf($_.Level) } | ForEach-Object { $color = $levelColorMap[$_.Level] - Write-Host -NoNewline "$($_.Level) rules: $($_.UsableCount) / $($_.TotalCount) ($($_.Percentage)%)" -ForegroundColor $color + Write-Host -NoNewline " - $($_.Level) rules: $($_.UsableCount) / $($_.TotalCount) ($($_.Percentage)%)" -ForegroundColor $color if ($i -lt $usableRate.Count - 1) { Write-Host -NoNewline ", "