summaryrefslogtreecommitdiffhomepage
path: root/dev/cli
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-11-19 09:18:08 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2025-11-19 09:18:08 +0100
commit6132d2c6a751ebffc29f950ca3755a05595dd99e (patch)
tree56863a984b488d880d9968c8af7ba9bcc1c7c400 /dev/cli
parentb21246fbf4b082e21f811d488bd85e8dafdee428 (diff)
feat: new documented codebase and improvements.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/cli')
-rw-r--r--dev/cli/AppMain.cc (renamed from dev/cli/App.cc)4
1 files changed, 2 insertions, 2 deletions
diff --git a/dev/cli/App.cc b/dev/cli/AppMain.cc
index d78ad69..53cbdf3 100644
--- a/dev/cli/App.cc
+++ b/dev/cli/AppMain.cc
@@ -17,7 +17,7 @@ int main(int argc, char** argv) {
std::string index_path = argv[index];
if (index_path == "-v" || index_path == "--version") {
- NeBuild::Logger::info() << "NeKernel Build Tool.\n";
+ NeBuild::Logger::info() << "NeKernel Build.\n";
NeBuild::Logger::info()
<< "Bugs or issues? Check out: https://github.com/nekernel-org/nebuild/issues\n";
@@ -58,7 +58,7 @@ int main(int argc, char** argv) {
goto end;
} else {
NeBuild::Logger::info()
- << "error: file '" << index_path << "' is not a JSON file!" << std::endl;
+ << "error: file '" << index_path << "' is not a manifest file!" << std::endl;
kFailed = true;
return;
}