From 1b5097d5035cb73a4845e914021851bf81186bfb Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Sat, 29 Nov 2025 21:15:44 -0500 Subject: chore: NeBuildKit: Architectural improvements over {Defines+Includes}.h Signed-off-by: Amlal El Mahrouss --- src/cli/main.cc | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/cli') diff --git a/src/cli/main.cc b/src/cli/main.cc index cbce3c0..02889ff 100644 --- a/src/cli/main.cc +++ b/src/cli/main.cc @@ -6,7 +6,6 @@ #include #include -#include "NeBuildKit/Defines.h" static bool kFailed = false; static bool kDryRun = false; @@ -18,9 +17,9 @@ int main(int argc, char** argv) { std::string index_path = argv[index]; if (index_path == "-v" || index_path == "-version") { - NeBuild::Logger::info() << "NeKernel Build.\n"; + NeBuild::Logger::info() << "NeBuild (" << LIBNEBUILD_VERSION << ")\n"; NeBuild::Logger::info() - << "Bugs, Issues? Check out: https://github.com/nekernel-org/nebuild/issues\n"; + << "Bugs, issues? https://github.com/nekernel-org/nebuild/issues\n"; return EXIT_SUCCESS; } else if (index_path == "-dry-run" || index_path == "-n") { -- cgit v1.2.3