diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-07-02 11:26:34 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-07-02 11:26:34 +0800 |
| commit | 66d9277fecdc0440cbd686a28bd448613a56b94c (patch) | |
| tree | a2794bd646e315464cda29e2b5c4d11b5c5c79c5 | |
| parent | d97e221650f1518a82896f36c36e61f83ef5887d (diff) | |
chore(ps1): replace dot with parenthesis in menu formatting
| -rw-r--r-- | run.ps1 | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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 } } - |
