From 66d9277fecdc0440cbd686a28bd448613a56b94c Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Thu, 2 Jul 2026 11:26:34 +0800 Subject: chore(ps1): replace dot with parenthesis in menu formatting --- run.ps1 | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/run.ps1 b/run.ps1 index 17b85e1..7364183 100644 --- a/run.ps1 +++ b/run.ps1 @@ -54,7 +54,7 @@ if ($args.Count -eq 0) { "rs" { "Rust" } "ps1" { "PowerShell" } } - $entry = " " + $i.ToString().PadRight($num_w) + ". " + $name.PadRight($max_name) + " [$lang]" + $entry = " " + $i.ToString().PadRight($num_w) + ") " + $name.PadRight($max_name) + " [$lang]" Write-Host ("│" + $entry.PadRight($inner_w) + "│") $i++ } @@ -144,4 +144,3 @@ edition = "2024" dotnet run --project "$temp_dir/$target_name.csproj" -- $script_args } } - -- cgit