summaryrefslogtreecommitdiffhomepage
path: root/cli
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2025-03-20 05:04:26 +0100
committerAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2025-03-20 15:49:00 +0100
commite1fd8b63b079d72d31bd7e0ea30fb7695891bc98 (patch)
tree56e5feb361683a98527ba92705cd049275252713 /cli
parent271ebdc52e0b9e90381154a29b370bf0be59a611 (diff)
META: A bunch of repository update for btb's relevancy.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'cli')
-rw-r--r--cli/CommandLine.cc (renamed from cli/ToolCLI.cc)14
1 files changed, 7 insertions, 7 deletions
diff --git a/cli/ToolCLI.cc b/cli/CommandLine.cc
index 01ac73e..231ee0b 100644
--- a/cli/ToolCLI.cc
+++ b/cli/CommandLine.cc
@@ -1,6 +1,7 @@
+
// ============================================================= //
// btb
-// Copyright (C) 2024, Theater Quality Inc, all rights reserved.
+// Copyright (C) 2024-2025, Amlal El Mahrouss, all rights reserved.
// ============================================================= //
#include <JSONManifestBuilder.h>
@@ -22,12 +23,12 @@ int main(int argc, char** argv)
index_path == "--version")
{
std::cout << "Usage: btb <file>\n";
- std::cout << "Check for issues at: el-mahrouss-logic.com/developer/issues\n";
+ std::cout << "Check for issues at: theater-quality.com/developer/issues\n";
- std::cout << "Brought to you by Theater Quality Inc.\n";
- std::cout << "© Theater Quality Inc, all rights reserved.\n";
+ std::cout << "Brought to you by Amlal El Mahrouss.\n";
+ std::cout << "© 2024-2025 Amlal El Mahrouss, all rights reserved.\n";
- return 0;
+ return EXIT_SUCCESS;
}
else if (index_path == "--dry-run")
{
@@ -38,8 +39,7 @@ int main(int argc, char** argv)
index_path == "--help")
{
std::cout << "btb: Build a JSON file: btb <json_path>.json\n";
-
- return 0;
+ return EXIT_SUCCESS;
}
std::thread job_build_thread([](std::string index_path) -> void {