diff options
Diffstat (limited to 'src/clients/cave/command_factory.cc')
-rw-r--r-- | src/clients/cave/command_factory.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/clients/cave/command_factory.cc b/src/clients/cave/command_factory.cc index b373b1a2d..01fb41410 100644 --- a/src/clients/cave/command_factory.cc +++ b/src/clients/cave/command_factory.cc @@ -80,6 +80,7 @@ #include "cmd_print_sets.hh" #include "cmd_print_spec.hh" #include "cmd_print_sync_protocols.hh" +#include "cmd_print_unmanaged_files.hh" #include "cmd_print_unused_distfiles.hh" #include "cmd_purge.hh" #include "cmd_report.hh" @@ -203,6 +204,7 @@ CommandFactory::CommandFactory() : _imp->handlers.insert(std::make_pair("print-sets", std::bind(&make_command<PrintSetsCommand>))); _imp->handlers.insert(std::make_pair("print-spec", std::bind(&make_command<PrintSpecCommand>))); _imp->handlers.insert(std::make_pair("print-sync-protocols", std::bind(&make_command<PrintSyncProtocolsCommand>))); + _imp->handlers.insert(std::make_pair("print-unmanaged-files", std::bind(&make_command<PrintUnmanagedFilesCommand>))); _imp->handlers.insert(std::make_pair("print-unused-distfiles", std::bind(&make_command<PrintUnusedDistfilesCommand>))); _imp->handlers.insert(std::make_pair("report", std::bind(&make_command<ReportCommand>))); _imp->handlers.insert(std::make_pair("resolve", std::bind(&make_command<ResolveCommand>))); |