summaryrefslogtreecommitdiffhomepage
path: root/dev/cli
diff options
context:
space:
mode:
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;
}