From f584a360298bd10505fc708790863e0a3fcde7ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=B8=AD=E9=B8=AD=E3=80=8C=E3=82=AB=E3=83=A2=E3=80=8D?= <89643991+DuckDuckStudio@users.noreply.github.com> Date: Tue, 16 Jun 2026 11:10:59 +0800 Subject: [PATCH] =?UTF-8?q?refactor:=20=E7=AE=80=E5=8C=96=20AnsiConsole.Ma?= =?UTF-8?q?rkupLine=20=E8=B0=83=E7=94=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- PinAction/Program.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/PinAction/Program.cs b/PinAction/Program.cs index cc4e0d0..3ec9c0c 100644 --- a/PinAction/Program.cs +++ b/PinAction/Program.cs @@ -1,7 +1,6 @@ using Octokit; using Spectre.Console; using PinAction.Resources; -using System.Globalization; using DuckStudio.CatFood.Functions; using System.Collections.Concurrent; using System.Text.RegularExpressions; @@ -90,7 +89,7 @@ args is ["help" } else { - AnsiConsole.MarkupLine(CultureInfo.CurrentCulture, $"{Print.MSHead.Error} {string.Format(Strings.ErrorPathNotExist, fullPath)}"); + AnsiConsole.MarkupLine($"{Print.MSHead.Error} {string.Format(Strings.ErrorPathNotExist, fullPath)}"); return 3; } }