commit 8cf1a4321e5b8dfbbbf6f999c9c61516dd328745
parent 3d60cece22103f3e9bfff1ca67afd5d4a7009421
Author: Kaleb Luedtke <jluedtk@jci.com>
Date: Wed, 11 Oct 2023 16:38:07 -0500
Allow --include-unknown with install (#3752)
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/src/AppInstallerCLICore/Commands/InstallCommand.cpp b/src/AppInstallerCLICore/Commands/InstallCommand.cpp
@@ -50,6 +50,7 @@ namespace AppInstaller::CLI
Argument::ForType(Args::Type::Rename),
Argument::ForType(Args::Type::UninstallPrevious),
Argument::ForType(Args::Type::Force),
+ Argument{ Args::Type::IncludeUnknown, Resource::String::IncludeUnknownArgumentDescription, ArgumentType::Flag, Argument::Visibility::Hidden},
};
}