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"),