summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-11-29 21:16:54 -0500
committerGitHub <noreply@github.com>2025-11-29 21:16:54 -0500
commit0c4df216280fb31a18f933a0fc9abd8efdc81305 (patch)
tree20a18b5820519da8127a11c72ab1ebd523050ca9 /src
parente43bfe755f98022252e56aa89431edc983babb93 (diff)
parent1b5097d5035cb73a4845e914021851bf81186bfb (diff)
Merge pull request #14 from nekernel-org/dev
chore: NeBuildKit: Architectural improvements over {Defines+Includes}.h
Diffstat (limited to 'src')
-rw-r--r--src/cli/main.cc5
1 files changed, 2 insertions, 3 deletions
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 <NeBuildKit/JSONManifestBuilder.h>
#include <NeBuildKit/TOMLManifestBuilder.h>
-#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") {