Compare commits

...

3 Commits

3 changed files with 4 additions and 2 deletions

View File

@ -49,6 +49,7 @@ clean:
$(RM) $(OBJS)
distclean: clean
$(RM) menu-helper.1.gz
$(RM) menu-helper
install: menu-helper menu-helper.1.gz

View File

@ -1,10 +1,10 @@
# To-Do List
- [ ] v1.0
- [X] v1.0
- [X] Add basic functionality.
- [X] Add more safeguards to avoid bad usage.
- [X] Create a man page.
- [ ] Add more documentation to `help` subcommand.
- [X] Add more documentation to `help` subcommand.
- [X] Properly align output columns from `list` subcommand.
- [X] Add feature for editing recipe name and description.
- [X] Name

View File

@ -79,6 +79,7 @@ static inline void print_help(void) {
"\thelp, -h, --help Show this help information.\n"
"\tversion, -v, --version Show version information.\n"
<< std::endl;
std::cout << "For more information about subcommands, use 'man menu-helper'." << std::endl;
}
enum cmd_id parse_args(const std::string &cmd);