mirror of
https://github.com/JustArchiNET/ArchiSteamFarm.git
synced 2026-01-01 22:20:52 +00:00
Implement --no-config-migrate option
This commit is contained in:
@@ -45,6 +45,7 @@ using SteamKit2;
|
||||
|
||||
namespace ArchiSteamFarm {
|
||||
internal static class Program {
|
||||
internal static bool ConfigMigrate { get; private set; } = true;
|
||||
internal static bool ConfigWatch { get; private set; } = true;
|
||||
internal static string? NetworkGroup { get; private set; }
|
||||
internal static bool ProcessRequired { get; private set; }
|
||||
@@ -502,6 +503,10 @@ namespace ArchiSteamFarm {
|
||||
case "--network-group" when !cryptKeyNext && !networkGroupNext && !pathNext:
|
||||
networkGroupNext = true;
|
||||
|
||||
break;
|
||||
case "--no-config-migrate" when !cryptKeyNext && !networkGroupNext && !pathNext:
|
||||
ConfigMigrate = false;
|
||||
|
||||
break;
|
||||
case "--no-config-watch" when !cryptKeyNext && !networkGroupNext && !pathNext:
|
||||
ConfigWatch = false;
|
||||
|
||||
Reference in New Issue
Block a user