Fix CLI Installer

This commit is contained in:
JFronny 2020-08-31 21:14:27 +02:00
parent ddbfb39e87
commit 0976297348
1 changed files with 1 additions and 0 deletions

View File

@ -23,6 +23,7 @@ namespace Installer
Basic = args.Length > 0 && args[0].ToLower() == "--basic";
ExternalFunctionalityManager.Init(new UtLibFunctions());
RootCommand rootCommand = new RootCommand();
rootCommand.AddGlobalOption(new Option<bool>("--basic", "Use only basic console functionality. Must be the first parameter in the call"));
Command install = new Command("install", "Install UpTool")
{
new Option<bool>(new[] {"--noPrep", "-p"}, "Doesn't initialize repos. Use with caution!")