summaryrefslogtreecommitdiffhomepage
path: root/dev/cli/App.cc
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-11-18 08:48:35 +0100
committerGitHub <noreply@github.com>2025-11-18 08:48:35 +0100
commit8cf214b3e06556aa0aa18133aac60ddbedebc06e (patch)
tree86d0ff4cfb91cf609071c900f2d400ecb89bdba2 /dev/cli/App.cc
parent76cf9156127bf7f082294a0c7e79f86059fe69ab (diff)
parentb21246fbf4b082e21f811d488bd85e8dafdee428 (diff)
Merge pull request #6 from nekernel-org/dev
feat: CMake file, new entries to gitignore, and code under BSD-3 now.
Diffstat (limited to 'dev/cli/App.cc')
-rw-r--r--dev/cli/App.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/dev/cli/App.cc b/dev/cli/App.cc
index ca81d4e..d78ad69 100644
--- a/dev/cli/App.cc
+++ b/dev/cli/App.cc
@@ -1,7 +1,7 @@
// ============================================================= //
// nebuild
-// Copyright (C) 2024-2025, Amlal El Mahrouss, all rights reserved.
+// Copyright (C) 2024-2025, Amlal El Mahrouss, licensed under BSD-3 license.
// ============================================================= //
#include <BuildKit/JSONManifestBuilder.h>
@@ -19,10 +19,10 @@ int main(int argc, char** argv) {
if (index_path == "-v" || index_path == "--version") {
NeBuild::Logger::info() << "NeKernel Build Tool.\n";
NeBuild::Logger::info()
- << "Bugs, or issues? Check out: https://github.com/nekernel-org/nebuild/issues\n";
+ << "Bugs or issues? Check out: https://github.com/nekernel-org/nebuild/issues\n";
return EXIT_SUCCESS;
- } else if (index_path == "--dry-run") {
+ } else if (index_path == "--dry-run" || index_path == "-n") {
kDryRun = true;
continue;
} else if (index_path == "-h" || index_path == "--help") {