'Generic Commit'
This commit is contained in:
@ -701,6 +701,9 @@ void show_help() {
|
|||||||
std::cout << " hash <file_or_directory> Calculate hash of file or directory" << std::endl;
|
std::cout << " hash <file_or_directory> Calculate hash of file or directory" << std::endl;
|
||||||
std::cout << " Outputs raw hash value to stdout" << std::endl;
|
std::cout << " Outputs raw hash value to stdout" << std::endl;
|
||||||
std::cout << std::endl;
|
std::cout << std::endl;
|
||||||
|
std::cout << " clean Clean up orphaned configs and symlinks" << std::endl;
|
||||||
|
std::cout << " Removes unused config files and dangling symlinks" << std::endl;
|
||||||
|
std::cout << std::endl;
|
||||||
std::cout << " version Show getpkg version" << std::endl;
|
std::cout << " version Show getpkg version" << std::endl;
|
||||||
std::cout << std::endl;
|
std::cout << std::endl;
|
||||||
std::cout << " help Show this help message" << std::endl;
|
std::cout << " help Show this help message" << std::endl;
|
||||||
@ -751,6 +754,7 @@ update
|
|||||||
version
|
version
|
||||||
create
|
create
|
||||||
hash
|
hash
|
||||||
|
clean
|
||||||
help
|
help
|
||||||
)";
|
)";
|
||||||
} else if (command == "version") {
|
} else if (command == "version") {
|
||||||
@ -759,6 +763,8 @@ help
|
|||||||
return create_tool(argc, argv);
|
return create_tool(argc, argv);
|
||||||
} else if (command == "hash") {
|
} else if (command == "hash") {
|
||||||
return hash_command(argc, argv);
|
return hash_command(argc, argv);
|
||||||
|
} else if (command == "clean") {
|
||||||
|
return clean_tool(argc, argv);
|
||||||
} else if (command == "help") {
|
} else if (command == "help") {
|
||||||
show_help();
|
show_help();
|
||||||
} else {
|
} else {
|
||||||
|
Reference in New Issue
Block a user