remove allow extras from option -> controlled by update config

This commit is contained in:
2024-06-20 22:40:19 +02:00
parent ee46f7272e
commit 87cfacfdbb
4 changed files with 3 additions and 4 deletions

View File

@@ -24,7 +24,6 @@ internal class Options
{ "uai", "Allow an update directly after install. This only has affect if there is no existing installation.", uai => UpdateOptions.AllowUpdaterAfterInstall = uai != null},
{ "noupdate", "Skip the update check.", noupdate => UpdateOptions.NoUpdate = noupdate != null},
{ "m|maintenance", "Ignores the maintenance mode.", m => UpdateOptions.IgnoreMaintenance = m != null},
{ "e|extraactions", "Include extra actions.", e => UpdateOptions.IncludeExtraActions = e != null},
};
additionals.AddRange(options.Parse(args));