From 0f83e1d7b7010c0e5bf082a5767510340d2c8e40 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BB=BB=E5=A4=A9=E5=A4=A9?= Date: Sun, 18 Jan 2026 11:11:44 +0800 Subject: [PATCH] =?UTF-8?q?fix(config):=20=E4=BF=AE=E5=A4=8D=E6=97=A0?= =?UTF-8?q?=E6=B3=95=E4=BF=9D=E5=AD=98=E5=AE=9E=E4=BE=8B=E8=AE=BE=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- App/Configuration/ConfigService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/App/Configuration/ConfigService.cs b/App/Configuration/ConfigService.cs index 06e88f9a..228d4330 100644 --- a/App/Configuration/ConfigService.cs +++ b/App/Configuration/ConfigService.cs @@ -180,7 +180,7 @@ private static void _InitializeProviders() { var dir = Path.GetFullPath(argument.ToString()!); var configPath = Path.Combine(dir, "PCL", "config.v1.yml"); - if (!File.Exists(dir)) _TryMigrate(dir, [ + if (!File.Exists(configPath)) _TryMigrate(dir, [ new ConfigMigration { From = Path.Combine(dir, "PCL", "setup.ini"),