'Generic Commit'
Some checks failed
Build-Test-Publish / build (linux/amd64) (push) Failing after 19s
Build-Test-Publish / build (linux/arm64) (push) Failing after 27s

This commit is contained in:
Your Name
2025-06-22 11:36:03 +12:00
parent cbdfc22d7f
commit 9cc2f2b9c4

View File

@ -701,6 +701,9 @@ void show_help() {
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 << 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 << std::endl;
std::cout << " help Show this help message" << std::endl;
@ -751,6 +754,7 @@ update
version
create
hash
clean
help
)";
} else if (command == "version") {
@ -759,6 +763,8 @@ help
return create_tool(argc, argv);
} else if (command == "hash") {
return hash_command(argc, argv);
} else if (command == "clean") {
return clean_tool(argc, argv);
} else if (command == "help") {
show_help();
} else {