summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2025-03-21 10:13:48 +0100
committerAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2025-03-21 10:13:48 +0100
commit5560b37d6da45f99667e333183ccfeaad8513c41 (patch)
tree6b8cc13420bb98c41d09da9c4258900a13fff655
parente1fd8b63b079d72d31bd7e0ea30fb7695891bc98 (diff)
Update CLI help output with new issue tracker and project attribution
- Replaced old issue tracker URL with GitHub Issues link - Clarified author attribution to reflect NeKernel project
-rw-r--r--cli/CommandLine.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/CommandLine.cc b/cli/CommandLine.cc
index 231ee0b..6b54b25 100644
--- a/cli/CommandLine.cc
+++ b/cli/CommandLine.cc
@@ -23,9 +23,9 @@ int main(int argc, char** argv)
index_path == "--version")
{
std::cout << "Usage: btb <file>\n";
- std::cout << "Check for issues at: theater-quality.com/developer/issues\n";
+ std::cout << "Bugs, Issues?, check out: https://github.com/ne-gh/btb/issues\n";
- std::cout << "Brought to you by Amlal El Mahrouss.\n";
+ std::cout << "Brought to you by Amlal El Mahrouss for the NeKernel project.\n";
std::cout << "© 2024-2025 Amlal El Mahrouss, all rights reserved.\n";
return EXIT_SUCCESS;