diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-11-19 09:21:46 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-11-19 09:21:46 +0100 |
| commit | dc87375b9a0103e8c9dd39393abc21113e2dd917 (patch) | |
| tree | 56863a984b488d880d9968c8af7ba9bcc1c7c400 /dev/cli | |
| parent | 8cf214b3e06556aa0aa18133aac60ddbedebc06e (diff) | |
| parent | 6132d2c6a751ebffc29f950ca3755a05595dd99e (diff) | |
Merge pull request #7 from nekernel-org/dev
feat: new documented codebase and improvements.
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; } |
