[lib] typo which causes shell show hidden commands mistakenly

This commit is contained in:
tangxifan 2023-01-08 21:43:35 -08:00
parent 2e84a48779
commit da7153f031
1 changed files with 2 additions and 2 deletions

View File

@ -420,13 +420,13 @@ void Shell<T>::print_commands(const bool& show_hidden) const {
}
/* Print the class name */
if (show_hidden && hidden_class) {
if (!show_hidden && hidden_class) {
continue;
}
VTR_LOG("%s:\n", command_class_names_[cmd_class].c_str());
for (const ShellCommandId& cmd : commands_by_classes_[cmd_class]) {
if (show_hidden && command_hidden_[cmd]) {
if (!show_hidden && command_hidden_[cmd]) {
continue;
}
VTR_LOG("\t%s\n", commands_[cmd].name().c_str());