fix help display bug

This commit is contained in:
lucaspalomodevelop 2023-05-15 20:27:24 +02:00
parent 294ecfcd6e
commit 21986aae0d

View File

@ -114,6 +114,6 @@ void help(int argc, char *argv[])
{
std::cout << "Usage: autom [command] [options]" << std::endl;
std::cout << "Commands:" << std::endl;
std::cout << " [script] - Runs a script if autom has not command with that name" << std::endl;
std::cout << "\t[script] - Runs a script if autom has not command with that name" << std::endl;
std::cout << command.listCommands() << std::endl;
}